summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP/BMClosedED/GPS.idl
blob: 8a2f2f50361deee1c2130fbc73ab1159b2866849 (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
// $Id$

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

#include "../HUDisplay.idl"

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

  home GPSHome manages GPS
  {
  };
};