summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_1254_Regression/test.idl
blob: 87b8160821e6f0c52dc6261611de2def43d06500 (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
// -*- IDL -*-

//=============================================================================
/**
 * @file test.idl
 *
 * $Id$
 *
 * "test" IDL interface for the CORBA_MARSHALL exception with sequence<octed>
 * as inout parameters (bug#1254).
 *
 * @author Kees van Marle <kvmarle@ermedy.nl>
 */
//=============================================================================


typedef sequence<octet> BlobType1;
typedef sequence<octet> BlobType2;

interface BlobServer
{
    void test(inout BlobType1 blob1, inout BlobType2 blob2);

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