summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DLL_ORB/Test.idl')
-rw-r--r--TAO/tests/DLL_ORB/Test.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/tests/DLL_ORB/Test.idl b/TAO/tests/DLL_ORB/Test.idl
new file mode 100644
index 00000000000..f58e6b90ec7
--- /dev/null
+++ b/TAO/tests/DLL_ORB/Test.idl
@@ -0,0 +1,30 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file Test.idl
+ *
+ * $Id$
+ *
+ * "Test" IDL interface for the DLL_ORB test.
+ *
+ * @author Ossama Othman <ossama@uci.edu>
+ */
+//=============================================================================
+
+/**
+ * @class Test
+ *
+ * @brief Simple interface that supplies an operation to invoke.
+ */
+interface Test
+{
+
+ // Simple two-way operation to invoke so that the ORB transport
+ // internals are excercised.
+ void invoke_me ();
+
+ // Shutdown the server-side ORB.
+ oneway void shutdown ();
+
+};