summaryrefslogtreecommitdiff
path: root/modules/CIAO/examples/Display/GPS/GPSEI.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/examples/Display/GPS/GPSEI.idl')
-rw-r--r--modules/CIAO/examples/Display/GPS/GPSEI.idl33
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/CIAO/examples/Display/GPS/GPSEI.idl b/modules/CIAO/examples/Display/GPS/GPSEI.idl
new file mode 100644
index 00000000000..d7604931f58
--- /dev/null
+++ b/modules/CIAO/examples/Display/GPS/GPSEI.idl
@@ -0,0 +1,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 */