Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_2595_Regression / Test.idl
blob286a6b5c0796591b76eb10d57621afc07b186371
1 // -*- IDL -*-
3 //=============================================================================
4 /**
5 * @file Test.idl
6 */
7 //=============================================================================
10 module Test
12 struct Fls
14 long l_mem;
15 double d_mem;
18 struct Vls
20 double d_mem;
21 string s_mem;
24 /// A very simple interface
25 interface Hello
27 void op(out Fls fstruct, out Vls vstruct);
29 /// A method to shutdown the ORB
30 /**
31 * This method is used to simplify the test shutdown process
33 oneway void shutdown ();