Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_3766_Regression / Test.idl
blobe21baea0179b5ea5da715dbaec4e7ca22d2352d2
1 #ifndef TEST_IDL_
2 #define TEST_IDL_
4 struct FixedLengthInfo
6 long a;
7 long b;
8 long c;
9 };
11 struct VariableLengthInfo
13 long a;
14 long b;
15 long c;
16 string d;
19 interface Test
21 void do_something_FixedLength(out FixedLengthInfo my_info);
22 void do_something_VariableLength(out VariableLengthInfo my_info);
24 oneway void shutdown ();
27 #endif /* TEST_IDL_ */