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

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 {
    ZEROTH,
    FIRST,
    SECOND,
    THIRD
  };

  union test_union switch (test_enum)
    {
      case SECOND:
        TypeCode tc;
      case FIRST:
        short s;
      case THIRD:
        string str;
      case ZEROTH:
        octet o;
    };
};