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 #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
tests
/
DynUnion_Test
/
dynany.idl
blob
96ad4b3bf74d3f08c8f93b9093ddb9513041f25a
1
module
DynAnyTest
{
2
3
enum
EventKind
{
ALARM_EVENT
,
LOG_EVENT
};
4
5
union
EventData
switch
(
EventKind
) {
6
case
ALARM_EVENT
:
any ev_data
;
7
case
LOG_EVENT
:
string
ev_desc
;
8
};
9
};