Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / OBV / Any / Any.idl
blob511fda0f1e71d2b29999e5be49f74654f8ea576b
1 //
2 // This file contains few valuetypes to show and test basic CORBA any
3 // functionality related to valuetypes.
4 //
6 module OBV_AnyTest
9 valuetype VZ
13 valuetype VA : VZ
15 public unsigned long id;
18 valuetype VB : VA
23 // Interface to pass valuetypes.
25 interface Test
27 // Returns VA or VB inserted into any
28 any get_something (in boolean need_vb);
30 VB get_vb ();
32 // Shutdown the romote ORB
33 oneway void shutdown ();