Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / IDL_Test / old_constants.idl
blobad76b11ac20c21026b6fac64028ec2798ea5506c
2 //=============================================================================
3 /**
4 * @file old_constants.idl
6 * Tests of const IDL constructs
9 * @author Andy Gokhale <gokhale@dre.vanderbilt.edu>
11 //=============================================================================
14 module OldConstants
16 const short l = 4;
18 enum N
20 zero,
21 un,
22 deux,
23 trois
26 exception E
28 short cause ;
31 module M
33 const short l = 4;
35 enum N
37 zero,
38 un,
39 deux,
40 trois
43 exception E
45 short cause ;
48 interface A
50 const short l = 4;
52 enum N
54 zero,
55 un,
56 deux,
57 trois
60 exception E
62 short cause ;
65 N foo (in N x, out N y, inout N z);