summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/ValueBox/vb_union.idl
blob: 0a05be46651721545830446106779d54c60b5ef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

//=========================================================================
// Valuebox of unions
//=========================================================================

union Fixed_Union1 switch(long)
{
 case 1: long m1;
 case 2: short m2;
};

union Variable_Union1 switch(long)
{
 case 1: long m1;
 case 2: string m2;
};


valuetype VBfixed_union1 Fixed_Union1;

valuetype VBvariable_union1 Variable_Union1;