1 //=============================================================================
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>
10 //=============================================================================
12 #include
"tao/StringSeq.pidl"
16 typedef sequence
<string> StringList
;
18 /// A very simple interface
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
32 * This method is used to simplify the test shutdown process
34 oneway
void shutdown
();