summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/anyunion.idl
blob: 47d22176f546b47b20329571a25f08c2ce5b16e0 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/IDL_Test
//
// = FILENAME
//    anyunion.idl
//
// = DESCRIPTION
//    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.
//
// = AUTHORS
//    Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
//
// ============================================================================

// AnyUnion
enum AnyUnionEnum {
  ANYUNIONENUM2
};

union MyAnyUnion switch (AnyUnionEnum) {
  case ANYUNIONENUM2:
    any my_any;
};