Merge pull request #1930 from jwillemsen/jwi-sslcert
[ACE_TAO.git] / TAO / tests / Bug_1676_Regression / Test.idl
blob289fad1e32561f21828a797a6b1b5ad80fc6cc8f
1 // -*- IDL -*-
3 //=============================================================================
4 /**
5 * @file Test.idl
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 //=============================================================================
15 module Test
17 typedef sequence<string> StringList;
19 /// A very simple interface
20 interface Hello
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
32 /**
33 * This method is used to simplify the test shutdown process
35 oneway void shutdown ();