summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Current_Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/TransportCurrent/lib/Current_Test.idl')
-rw-r--r--TAO/tests/TransportCurrent/lib/Current_Test.idl38
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tests/TransportCurrent/lib/Current_Test.idl b/TAO/tests/TransportCurrent/lib/Current_Test.idl
new file mode 100644
index 00000000000..a7f00f7d29f
--- /dev/null
+++ b/TAO/tests/TransportCurrent/lib/Current_Test.idl
@@ -0,0 +1,38 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file Current_Test.idl
+ *
+ * $Id$
+ *
+ * Simple IDL file to test TAO::TranspotCurrent
+ * support.
+ *
+ * @author Iliyan Jeliazkov <iliyan@ociweb.com>
+ */
+//=============================================================================
+
+
+
+module Test
+{
+ module Transport
+ {
+ interface CurrentTest
+ {
+
+ const unsigned long ContextTag = 0xabcdef;
+
+ void invoked_by_client ();
+
+ void invoked_during_upcall ();
+
+ long self_test ();
+
+ oneway void shutdown ();
+ };
+ };
+};
+
+