summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl')
-rw-r--r--ACE/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl32
1 files changed, 32 insertions, 0 deletions
diff --git a/ACE/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl b/ACE/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl
new file mode 100644
index 00000000000..f93b53177b9
--- /dev/null
+++ b/ACE/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl
@@ -0,0 +1,32 @@
+// $Id$
+//
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/NestedUpcall/Triangle_Test
+//
+// = FILENAME
+// Triangle_Test.idl
+//
+// = DESCRIPTION
+// An example of how nested upcalls work/fail?
+//
+// = AUTHORS
+// Michael Kircher
+//
+// ============================================================================
+
+
+
+interface Object_A {
+
+ long foo (in long time);
+
+};
+
+interface MT_Object;
+
+interface MT_Object
+{
+ long yadda (in long hop_count, in MT_Object partner);
+};