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
=default for generated implementation copy ctor
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_2126_Regression
/
Test.idl
blob
5e241dc7c0e63ade78f1ca3f77bf8625f29bb82c
1
/**
2
* @file Test.idl
3
*/
4
5
union
FirstUnion
switch
(
boolean
) {
6
case
TRUE
:
7
long
first_union_foo
;
8
case
FALSE
:
9
long
first_union_bar
;
10
};
11
12
typedef
FirstUnion FirstUnionArray
[
2
];
13
14
struct
MyStruct
{
15
FirstUnionArray my_struct_foo
;
16
};
17
18
union
SecondUnion
switch
(
boolean
) {
19
case
TRUE
:
20
MyStruct second_union_struct_member
;
21
case
FALSE
:
22
long
wibble
;
23
};