summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3_to_XMI/XMI_For_Sequence/test.idl
blob: 5816035345d41f46779abfff65bcd610745161b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef TEST_IDL
#define TEST_IDL

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

  struct A {
    SeqChar field;
  };
  struct A10 {
    SeqChar10 field;
  };

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

#endif // TEST_IDL