summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Implicit_Activation/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/POA/Implicit_Activation/Test.idl')
-rw-r--r--TAO/performance-tests/POA/Implicit_Activation/Test.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/performance-tests/POA/Implicit_Activation/Test.idl b/TAO/performance-tests/POA/Implicit_Activation/Test.idl
new file mode 100644
index 00000000000..f925e18a804
--- /dev/null
+++ b/TAO/performance-tests/POA/Implicit_Activation/Test.idl
@@ -0,0 +1,26 @@
+//
+// $Id$
+//
+
+/// A simple module to avoid namespace pollution
+module Test
+{
+ /// A very simple interface
+ interface Simple
+ {
+ /// Destroy the object
+ void destroy ();
+ };
+
+ /// A factory to create simple objects
+ interface _Factory
+ {
+ /// Create the object
+ Simple create_simple_object ();
+
+ /// Shutdown the server
+ void shutdown ();
+ };
+
+ typedef sequence<Simple> Simple_Sequence;
+};