summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL3_to_XMI/XMI_For_Array/test.idl
blob: 548c7aa207353bd97c6cb0f743e720f72957c831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$

#ifndef TEST_IDL
#define TEST_IDL

module TestXMIArray {
  typedef char CharArray [4][5];

  struct A
  {
    CharArray bar;
  };

  struct B
  {
    char bar[3][2];
  };
};

#endif // TEST_IDL