summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/GPS/GPSEI.idl
blob: d7604931f5828d22993e0b15d201e26f669c5d50 (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 GPSEI.idl
 *
 * Definition of the GPS component implementation.
 *
 * @author Nanbor Wang <nanbor@cs.wustl.edu>
 */

#ifndef GPSEI_IDL
#define GPSEI_IDL

#include "GPSE.idl"

module HUDisplay
{
  /**
   * @interface GPS_Exec
   *
   * The actually GPS executor inherits from both CCM_GPS and
   * CCM_position interfaces as a monolithic implementation.
   */
  local interface GPS_Exec :
    CCM_GPS,
    CCM_position,
    Components::SessionComponent
  {
  };

};

#endif /* GPSEI_IDL */