summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/struct.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/struct.idl')
-rw-r--r--TAO/tests/IDL_Test/struct.idl17
1 files changed, 17 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/struct.idl b/TAO/tests/IDL_Test/struct.idl
index bd80df37061..f8b0317d7cc 100644
--- a/TAO/tests/IDL_Test/struct.idl
+++ b/TAO/tests/IDL_Test/struct.idl
@@ -39,4 +39,21 @@ module Test
FooType Foo1;
FooType Foo2;
};
+
+ enum S90
+ {
+ S90_1,
+ S90_2
+ };
+ typedef S90 S90Array[2];
+ typedef long S42[2];
+ typedef string SString43[2];
+ typedef S4 S4Array[2];
+ struct S10
+ {
+ S90 s10_1;
+ S42 s10_2;
+ SString43 s10_3;
+ S4 s10_4;
+ };
};