summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/da_tests.idl
blob: a3e8baa33ced2b8bb61afed7d5bfe6320df9dcab (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
45
46
/* -*- C++ -*- */
//
// $Id$

#include <orb.idl>

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

  struct test_struct 
  {
    char c;
    long long ll;
    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
  };

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