summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Any/Any.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Any/Any.idl')
-rw-r--r--TAO/tests/OBV/Any/Any.idl32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/tests/OBV/Any/Any.idl b/TAO/tests/OBV/Any/Any.idl
new file mode 100644
index 00000000000..910b8cece5f
--- /dev/null
+++ b/TAO/tests/OBV/Any/Any.idl
@@ -0,0 +1,32 @@
+//$Id$
+
+//
+// This file contains few valuetypes to show and test basic CORBA any
+// functionality related to valuetypes.
+//
+
+module OBV_AnyTest
+{
+ valuetype VA
+ {
+ public unsigned long id;
+ };
+
+ valuetype VB : VA
+ {
+
+ };
+
+ //
+ // Interface to pass valuetypes.
+ //
+ interface Test
+ {
+ // Returns VA or VB inserted into any
+ any get_something (in boolean need_vb);
+
+ // Shutdown the romote ORB
+ oneway void shutdown ();
+ };
+
+};