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

module DynAnyTests
{
  struct enclosed_struct {
    long l;
    string str;
  };

  struct test_struct {
    short s;
    double d;
    enclosed_struct es;
  };

  typedef sequence<enclosed_struct> test_seq;

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

  enum test_enum {
    ZERO,
    ONE,
    TWO,
    THREE
  };
};