Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Collocated_DerivedIF / Test.idl
blob76d36162f6c9c1aef1fcc9c53bf23d2f7c0db7b2
1 /// Put the interfaces in a module, to avoid global namespace pollution
2 module Test
4 /// A very simple interface
5 interface Hello
7 /// Return a simple string
8 string get_string ();
10 /// A method to shutdown the ORB
11 oneway void shutdown ();
14 // A derived interface
15 interface HelloAgain : Hello
17 string get_string_again ();