summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl')
-rw-r--r--trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl b/trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl
new file mode 100644
index 00000000000..a0f4dacae13
--- /dev/null
+++ b/trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl
@@ -0,0 +1,30 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file test.idl
+ *
+ * $Id$
+ *
+ * Simple IDL file to test PortableInterceptor::Current
+ * support.
+ *
+ * @author Ossama Othman <ossama@uci.edu>
+ */
+//=============================================================================
+
+module PICurrentTest
+{
+
+ interface test
+ {
+ void invoke_me ();
+
+ void invoke_you ();
+
+ void invoke_we ();
+
+ oneway void shutdown ();
+ };
+
+};