summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl')
-rw-r--r--TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl46
1 files changed, 0 insertions, 46 deletions
diff --git a/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl b/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl
deleted file mode 100644
index f0268ad3a42..00000000000
--- a/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl
+++ /dev/null
@@ -1,46 +0,0 @@
-// $Id$
-
-/**
- * @file Priority_Test.idl
- *
- * Definition of events, and common interfaces used in Priority_Test module.
- *
- * @author Nanbor Wang <nanbor@cs.wustl.edu>
- */
-
-#ifndef CIAO_PRIORITY_TEST_IDL
-#define CIAO_PRIORITY_TEST_IDL
-
-#include <Components.idl>
-
-module Priority_Test
-{
- /**
- * @brief interface Op_Mode defines the "operation mode" interface.
- */
- interface Op_Mode
- {
- /// Start with arg.
- void start (in long arg);
-
- void stop ();
- };
-
- /**
- * @brief interface Common_Ops defines some "common" operations. It
- * is intended to be used as the interface type of a facet or a
- * receptacle. All operations in the interface are rather generic
- * and the actualy component implmenetion should decide what they
- * actually do.
- *
- * @param work the amount of work to be done
- * @param aux auxiliary parameter
- */
- interface Common_Ops
- {
- long do_work (in long work,
- in long aux);
- };
-};
-
-#endif /* CIAO_PRIORITY_TEST_IDL */