summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Two_Objects/Two_Objects.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Two_Objects/Two_Objects.idl')
-rw-r--r--ACE/TAO/tests/Two_Objects/Two_Objects.idl31
1 files changed, 31 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Two_Objects/Two_Objects.idl b/ACE/TAO/tests/Two_Objects/Two_Objects.idl
new file mode 100644
index 00000000000..a4c985c2eac
--- /dev/null
+++ b/ACE/TAO/tests/Two_Objects/Two_Objects.idl
@@ -0,0 +1,31 @@
+//
+// $Id$
+//
+
+module Two_Objects_Test
+{
+
+ typedef sequence<octet> Octet_Seq;
+
+ /// A very simple interface
+ interface First
+ {
+ oneway void oneway_method ();
+ };
+
+ interface Second
+ {
+ /// Return a simple string
+ Octet_Seq twoway_method ();
+
+ /// A method to shutdown the ORB
+ oneway void shutdown ();
+ };
+
+ /// Factory interface to create first and second objects
+ interface Object_Factory
+ {
+ First create_first ();
+ Second create_second ();
+ };
+};