summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL3_to_XMI/XMI_For_Sequence/test.idl
blob: 1fced580bc2d85b7c72fb8c5988a77b09c5dc798 (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
// $Id$

#ifndef TEST_IDL
#define TEST_IDL

module TestXMISequence {
  typedef sequence<char> SeqChar;
  typedef sequence<char, 10> SeqChar10;

  struct A {
    sequence<char> field;
  };
  struct A10 {
    sequence<char, 10> field;
  };

  struct B {
    SeqChar field;
  };
  struct B10 {
    SeqChar10 field;
  };
};

#endif // TEST_IDL