summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/EC/EC.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/BasicSP/EC/EC.idl')
-rw-r--r--CIAO/examples/BasicSP/EC/EC.idl41
1 files changed, 0 insertions, 41 deletions
diff --git a/CIAO/examples/BasicSP/EC/EC.idl b/CIAO/examples/BasicSP/EC/EC.idl
deleted file mode 100644
index 50ad25afd7f..00000000000
--- a/CIAO/examples/BasicSP/EC/EC.idl
+++ /dev/null
@@ -1,41 +0,0 @@
-// $Id$
-//=============================================================================
-/**
- * @file EC.idl
- *
- * Definition of events, and common interfaces used in the BasicSP module.
- *
- * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
- */
-//=============================================================================
-
-#ifndef CIAO_EC_IDL
-#define CIAO_EC_IDL
-
-#include "../BasicSP.idl"
-
-module BasicSP
-{
- interface trigger
- {
- void start ();
- void stop ();
- };
- component EC supports trigger
- {
- publishes TimeOut timeout;
-
- /// The attribute can be configured via the home or the
- /// component property file.
- attribute long hertz;
-
- };
-
- home ECHome manages EC
- {
- // Explicit operations
- factory new_EC (in long hertz);
- };
-};
-
-#endif /* CIAO_EC_IDL*/