summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/POA/Bug_1592_Regression/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/POA/Bug_1592_Regression/test.idl')
-rw-r--r--ACE/TAO/tests/POA/Bug_1592_Regression/test.idl35
1 files changed, 35 insertions, 0 deletions
diff --git a/ACE/TAO/tests/POA/Bug_1592_Regression/test.idl b/ACE/TAO/tests/POA/Bug_1592_Regression/test.idl
new file mode 100644
index 00000000000..57b9f37c17f
--- /dev/null
+++ b/ACE/TAO/tests/POA/Bug_1592_Regression/test.idl
@@ -0,0 +1,35 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file test.idl
+ *
+ * $Id$
+ *
+ * Simple IDL file to test PortableInterceptor / ServantLocator
+ * support.
+ *
+ * @author Ossama Othman <ossama@dre.vanderbilt.edu>
+ */
+//=============================================================================
+
+#ifndef TEST_IDL
+#define TEST_IDL
+
+/**
+ * @interface test
+ *
+ * @brief PortableInterceptor/ServantLocator test interface.
+ *
+ * Simple interface that provides an operation to invoke.
+ */
+interface test
+{
+ /// Dummy operation.
+ void op ();
+
+ /// Shutdown the server.
+ oneway void shutdown ();
+};
+
+#endif /* TEST_IDL */