summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_1676_Regression/Test.idl
blob: 9884187dc0c8c528599d038809650f27a16f1d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// -*- IDL -*-

//=============================================================================
/**
 * @file Test.idl
 *
 * $Id$
 *
 * "test" IDL interface for the Uninitialized "out" param for sequence<string>
 * can cause server to core test.
 *
 * @author Kees van Marle <kvmarle@ermedy.nl>
 */
//=============================================================================


module Test
{
  typedef sequence<string> StringList;

  /// A very simple interface
  interface Hello
  {
    /// Return a string list
    StringList get_stringList ();

    /// Return a string list
    void get_stringList2 (in boolean initialize, out StringList osl);

    /// Modify a string list
    void mod_stringList (inout StringList iosl);

    /// A method to shutdown the ORB
    /**
     * This method is used to simplify the test shutdown process
     */
    oneway void shutdown ();
  };
};