summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/GPS/GPS.idl
blob: a3a437d98db78822c88f35f70602fa588df9e2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// $Id$

/**
 * @file GPS.idl
 *
 * Definition of the GPS component.
 *
 * @author Nanbor Wang <nanbor@cs.wustl.edu>
 */
#ifndef GPS_IDL
#define GPS_IDL

#include "../Display_Base/Display_Base.idl"

module HUDisplay
{
  component GPS
    {
      provides position MyLocation;
      publishes tick Ready;
      consumes tick Refresh;
    };

  home GPSHome manages GPS
  {
  };
};

#endif /* GPS_IDL */