summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl')
-rw-r--r--CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl33
1 files changed, 0 insertions, 33 deletions
diff --git a/CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl b/CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl
deleted file mode 100644
index 2c7ec8b2940..00000000000
--- a/CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef THREECOMP_IDL
-#define THREECOMP_IDL
-
-#pragma ciao lem "Base/ThreeCompE.idl"
-#pragma ciao ami4ccm interface "ThreeComp::MyFoo"
-#pragma ciao ami4ccm interface "ThreeComp::State"
-#pragma ciao lem "Base/ThreeCompAE.idl"
-#pragma ciao ami4ccm idl "Base/ThreeCompA.idl"
-
-
-module ThreeComp
-{
- exception InternalError
- {
- long id;
- string error_string;
- };
-
- // Sender/Receiver interface
- interface MyFoo
- {
- long foo (in long cmd, out string answer)
- raises (InternalError);
- };
- // Master/Sender interface
- interface State
- {
- long bar (in long cmd, out string answer)
- raises (InternalError);
- };
-};
-
-#endif