summaryrefslogtreecommitdiff
path: root/modules/CIAO/examples/Display/NavDisplay/NavDisplay.idl
blob: a786f7f9d0672132c82b4ac26ac0c743a83978df (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 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 position GPSLocation;
    };

  home NavDisplayHome manages NavDisplay
  {
  };
};

#endif /* NAVDISPLAY_IDL */