summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/da_tests.idl
blob: ad661c418e338f6d9d284ffb5eb64a59f73e6387 (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
42
43
44
/* -*- C++ -*- */
//
// $Id$

#include <orb.idl>

module DynAnyTests
{
  struct enclosed_struct 
  {
    float f;
    short s;
  };

  struct test_struct 
  {
    char c;
    long l;
    enclosed_struct es;
  };

  typedef sequence<string> test_seq;

  const unsigned long DIM = 2;
  typedef long test_array [DIM];

  enum test_enum 
  {
    TE_ZEROTH,
    TE_FIRST,
    TE_SECOND,
    TE_THIRD,
    TE_FOURTH
  };

  union test_union switch (test_enum)
  {
    case TE_SECOND: CORBA::TypeCode tc;
    case TE_FOURTH: test_enum te;
    default: short s;
    case TE_THIRD: string str;
    case TE_ZEROTH: octet o;
  };
};