summaryrefslogtreecommitdiff
path: root/modules/CIAO/examples/Display/GPS/GPS.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/examples/Display/GPS/GPS.idl')
-rw-r--r--modules/CIAO/examples/Display/GPS/GPS.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/CIAO/examples/Display/GPS/GPS.idl b/modules/CIAO/examples/Display/GPS/GPS.idl
new file mode 100644
index 00000000000..a3a437d98db
--- /dev/null
+++ b/modules/CIAO/examples/Display/GPS/GPS.idl
@@ -0,0 +1,29 @@
+// $Id$
+
+/**
+ * @file GPS.idl
+ *
+ * Definition of the GPS component.
+ *
+ * @author Nanbor Wang <nanbor@cs.wustl.edu>
+ */
+#ifndef GPS_IDL
+#define GPS_IDL
+
+#include "../Display_Base/Display_Base.idl"
+
+module HUDisplay
+{
+ component GPS
+ {
+ provides position MyLocation;
+ publishes tick Ready;
+ consumes tick Refresh;
+ };
+
+ home GPSHome manages GPS
+ {
+ };
+};
+
+#endif /* GPS_IDL */