repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
More tests update
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Test
/
struct.idl
blob
bd80df37061846b66f01b4acfba6929b3353ca4e
1
// Double forward declared struct test, created by Martin Corino <mcorino@remedy.nl>
2
3
module
Test
4
{
5
struct
S3
;
6
7
struct
S1
8
{
9
string
hello
;
10
};
11
12
struct
S3
;
13
14
typedef
sequence
<
S3
>
TS3Seq
;
15
16
struct
S3
17
{
18
TS3Seq m_seq
;
19
boolean
m_has_more
;
20
};
21
22
struct
S4
;
23
typedef
sequence
<
S4
>
TS4Seq
;
24
25
struct
S5
;
26
typedef
sequence
<
S5
>
TS5Seq
;
27
28
struct
S4
29
{
30
boolean
a
;
31
};
32
struct
S5
33
{
34
boolean
b
;
35
};
36
37
typedef
long
FooType
;
38
struct
FooStruct
{
39
FooType Foo1
;
40
FooType Foo2
;
41
};
42
};