summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1361_Regression/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1361_Regression/Test.idl')
-rw-r--r--TAO/tests/Bug_1361_Regression/Test.idl29
1 files changed, 0 insertions, 29 deletions
diff --git a/TAO/tests/Bug_1361_Regression/Test.idl b/TAO/tests/Bug_1361_Regression/Test.idl
deleted file mode 100644
index bfe9cc92f47..00000000000
--- a/TAO/tests/Bug_1361_Regression/Test.idl
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * @file Test.idl
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@atdesk.com>
- *
- */
-#ifndef Test__idl_
-#define Test__idl_
-
-module Test
-{
- typedef sequence<octet> Payload;
- interface Echo
- {
- void echo_payload(in Payload data);
- void echo_payload_out(out Payload data);
- };
-
- interface Echo_Caller
- {
- void start_task(in Echo client);
-
- oneway void shutdown();
- };
-};
-
-#endif /* Test__idl_ */