summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/generic_object.idl
blob: e2c4e2ff5706938f36c8893f141f7af8fadfa9b5 (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
40
41

//=============================================================================
/**
 *  @file    generic_object.idl
 *
 *  $Id$
 *
 *  This file contains examples of IDL code that has
 *  caused problems in the past for the TAO IDL
 *  compiler. This test is to make sure the problems
 *  stay fixed.
 *
 *
 *  @author Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
 */
//=============================================================================


// The IDL compiler deals with these in a completely different way
// that it deals with a derived object, i.e., an interface.

enum ObjectType
{
  OT_THIS,
  OT_THAT
};

union Selecter switch (ObjectType)
{
  case OT_THIS: Object this_object;
  case OT_THAT: Object that_object;
};

// Test stub code for generic object parameters.
interface generic
{
  Object op (in Object inarg,
             inout Object inoutarg,
             out Object outarg);
};