summaryrefslogtreecommitdiff
path: root/TAO/tests/Typedef_String_Array/test.idl
blob: c79e4fd291e6035e3a84d88bc4fe116df44892e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Either of these sets will work, but only the last one
// demonstrates the original tao_idl problem.

//#define MyString string
//typedef MyString ArrayOfString[15];

//typedef string MyString;
//typedef string ArrayOfString[15];

typedef string MyString;
typedef MyString ArrayOfString[15];

interface SimpleStrings
{
  void get_strings(out ArrayOfString strings);
};