summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/Display_Base/Display_Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/Display/Display_Base/Display_Base.idl')
-rw-r--r--CIAO/examples/Display/Display_Base/Display_Base.idl46
1 files changed, 0 insertions, 46 deletions
diff --git a/CIAO/examples/Display/Display_Base/Display_Base.idl b/CIAO/examples/Display/Display_Base/Display_Base.idl
deleted file mode 100644
index 337d4101c2b..00000000000
--- a/CIAO/examples/Display/Display_Base/Display_Base.idl
+++ /dev/null
@@ -1,46 +0,0 @@
-// $Id$
-
-/**
- * @file Display_Base.idl
- *
- * Definition of events, and common interfaces used in HUDisplay module.
- *
- * @author Nanbor Wang <nanbor@cs.wustl.edu>
- */
-
-#ifndef HUDISPLAY_IDL
-#define HUDISPLAY_IDL
-
-#include <Components.idl>
-
-module HUDisplay
-{
- /**
- * @brief interface opmode defines the "operation mode" interface.
- */
- interface opmode
- {
- void start ();
- void stop ();
- boolean active ();
- };
-
- /**
- * @brief a timed event that happens at some fix rate.
- */
- eventtype tick
- {
- // We could put a timestamp here if desired.
- };
-
- /**
- * @brief interface position allows querying of a coordination.
- */
- interface position
- {
- long posx ();
- long posy ();
- };
-};
-
-#endif /* HUDISPLAY_IDL */