3 //=============================================================================
7 * "test" IDL interface for the Uninitialized "out" param for sequence<string>
8 * can cause server to core test.
10 * @author Kees van Marle <kvmarle@ermedy.nl>
12 //=============================================================================
17 typedef sequence
<string> StringList
;
19 /// A very simple interface
22 /// Return a string list
23 StringList get_stringList
();
25 /// Return a string list
26 void get_stringList2
(in boolean initialize
, out StringList osl
);
28 /// Modify a string list
29 void mod_stringList
(inout StringList iosl
);
31 /// A method to shutdown the ORB
33 * This method is used to simplify the test shutdown process
35 oneway
void shutdown
();