summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2678_Regression/test.idl
blob: a77a7bcdcceac788a21c67eefead4c281fc93759 (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
// $Id$

typedef sequence<any> AnySeq;

struct Container
{
  any contents;
};

struct Inner
{
  long value1;
  long value2;
  long value3;
  long value4;
  long value5;
};

interface Test
{
  AnySeq RunTest(in AnySeq params);
  void shutdown ();
};