summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/BasicSP.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/BasicSP/BasicSP.idl')
-rw-r--r--CIAO/examples/BasicSP/BasicSP.idl47
1 files changed, 0 insertions, 47 deletions
diff --git a/CIAO/examples/BasicSP/BasicSP.idl b/CIAO/examples/BasicSP/BasicSP.idl
deleted file mode 100644
index e8e0bf2ae2a..00000000000
--- a/CIAO/examples/BasicSP/BasicSP.idl
+++ /dev/null
@@ -1,47 +0,0 @@
-// $Id$
-//=============================================================================
-/**
- * @file BasicSP.idl
- *
- * Definition of events, and common interfaces used in the BasicSP module.
- *
- * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
- */
-//=============================================================================
-
-#ifndef CIAO_BASIC_SP_IDL
-#define CIAO_BASIC_SP_IDL
-
-#include <Components.idl>
-
-// @@NOTE: Do we need a pragma prefix. Anyway its broken now in TAO..
-// #pragma prefix ""
-
-module BasicSP
-{
-
- /**
- * @NOTE: Not sure whether this is a good abstraction. Just copying
- * the stuff from Cadena folks.
- */
- /**
- * @interface ReadData
- *
- */
-
- interface ReadData {
- string get_data ();
- };
-
- /**
- * @eventtype Events that represent timeouts
- */
- eventtype TimeOut {};
-
- /**
- * @eventtype Events that represent data availability
- */
- eventtype DataAvailable {};
-};
-
-#endif /*CIAO_BASIC_SP_IDL*/