Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_1676_Regression / Test.idl
blob688709b8845d69580820d35e2ca9ee2b6d81d346
1 //=============================================================================
2 /**
3 * @file Test.idl
5 * "test" IDL interface for the Uninitialized "out" param for sequence<string>
6 * can cause server to core test.
8 * @author Kees van Marle <kvmarle@remedy.nl>
9 */
10 //=============================================================================
12 #include "tao/StringSeq.pidl"
14 module Test
16 typedef sequence<string> StringList;
18 /// A very simple interface
19 interface Hello
21 /// Return a string list
22 StringList get_stringList ();
24 /// Return a string list
25 void get_stringList2 (in boolean initialize, out StringList osl);
27 /// Modify a string list
28 void mod_stringList (inout StringList iosl);
30 /// A method to shutdown the ORB
31 /**
32 * This method is used to simplify the test shutdown process
34 oneway void shutdown ();