summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3766_Regression/Test.idl
blob: e21baea0179b5ea5da715dbaec4e7ca22d2352d2 (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
26
27
#ifndef TEST_IDL_
#define TEST_IDL_

struct FixedLengthInfo
{
  long a;
  long b;
  long c;
};

struct VariableLengthInfo
{
  long a;
  long b;
  long c;
  string d;
};

interface Test
{
  void do_something_FixedLength(out FixedLengthInfo my_info);
  void do_something_VariableLength(out VariableLengthInfo my_info);

  oneway void shutdown ();
};

#endif /* TEST_IDL_ */