Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / OBV / ValueBox / vb_union.idl
blob59540ea4f6f31b118361a200f3db433424fa5209
1 //=========================================================================
2 // Valuebox of unions
3 //=========================================================================
5 union Fixed_Union1 switch(long)
7 case 1: long m1;
8 case 2: short m2;
9 };
11 union Variable_Union1 switch(long)
13 case 1: long m1;
14 case 2: string m2;
18 valuetype VBfixed_union1 Fixed_Union1;
20 valuetype VBvariable_union1 Variable_Union1;