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.idl23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl b/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
index 3e5fa3e9592..caad747cd8f 100644
--- a/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
+++ b/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
@@ -15,3 +15,26 @@ module M1 {
};
};
+
+module M2 {
+ module M3 {
+ struct S2 {
+ octet o;
+ };
+
+ local interface L2 {
+ void op(in S2 s);
+ };
+
+ valuetype V2 {
+ public string valString;
+ public S2 valStruct;
+ public L2 valLocalIface;
+ };
+ valuetype V3 {
+ public string valString;
+ public M1::S1 valStruct;
+ public M1::LI valLocalIface;
+ };
+ };
+};