summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/NavDisplay/NavDisplay.idl
blob: 2925c19cd702d27f8338d375cca1e16db6dda6b1 (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
30
31
32
33
// $Id$

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

#ifndef NAVDISPLAY_IDL
#define NAVDISPLAY_IDL

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

module HUDisplay
{
  component NavDisplay
    {
      consumes tick Refresh;
      uses multiple position GPSLocation;
      /// The attribute can be configured via deploymentplan
      // This number must indicate the number of GPS devices
      // which are also defined in the deploymentplan.
      attribute long number_of_GPS;
    };

  home NavDisplayHome manages NavDisplay
  {
  };
};

#endif /* NAVDISPLAY_IDL */