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
Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
InterfaceRepo
/
Union_Forward_Test
/
test.idl
blob
ac8020ac93a4576f10fbc4f3ec5e32b52ae43284
1
module
IFR_Test
2
{
3
4
union
test
;
5
6
typedef
sequence
<
test
>
test_seq
;
7
8
union
test
switch
(
short
)
9
{
10
case
0
:
short
x
;
11
case
1
:
test_seq seq
;
12
default
:
string
s
;
13
};
14
15
interface
test_if
16
{
17
attribute test foo
;
18
};
19
20
};