summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl')
-rw-r--r--TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl17
1 files changed, 17 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl b/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
new file mode 100644
index 00000000000..3e5fa3e9592
--- /dev/null
+++ b/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
@@ -0,0 +1,17 @@
+module M1 {
+
+ struct S1 {
+ octet o;
+ };
+
+ local interface LI {
+ void op(in S1 s);
+ };
+
+ valuetype V {
+ public string valString;
+ public S1 valStruct;
+ public LI valLocalIface;
+ };
+
+};