More tests update
[ACE_TAO.git] / TAO / tests / IDL_Test / struct.idl
blobbd80df37061846b66f01b4acfba6929b3353ca4e
1 // Double forward declared struct test, created by Martin Corino <mcorino@remedy.nl>
3 module Test
5 struct S3;
7 struct S1
9 string hello;
12 struct S3;
14 typedef sequence<S3> TS3Seq;
16 struct S3
18 TS3Seq m_seq;
19 boolean m_has_more;
22 struct S4;
23 typedef sequence<S4> TS4Seq;
25 struct S5;
26 typedef sequence<S5> TS5Seq;
28 struct S4
30 boolean a;
32 struct S5
34 boolean b;
37 typedef long FooType;
38 struct FooStruct {
39 FooType Foo1;
40 FooType Foo2;