summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Trading/TTest.idl
blob: 756f057e2666b70af6070f7c062096f74c32d9c4 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// $Id$

#include <orb.idl>

module TAO_Trader_Test
{

interface Remote_Output
{
  void confirm ();
  // Ensure that the object reference returned from the query actually
  // works.
};

interface Plotter : Remote_Output
{
};

interface Printer : Remote_Output
{
};

interface File_System : Remote_Output
{
};

interface PostScript_Printer : Remote_Output
{
};

// Sequences used to test sequence type equivalence in the trader.
typedef CORBA::ShortSeq ShortSeq;
typedef CORBA::UShortSeq UShortSeq;
typedef CORBA::LongSeq LongSeq;
typedef CORBA::ULongSeq ULongSeq;
typedef CORBA::BooleanSeq BooleanSeq;
typedef CORBA::FloatSeq FloatSeq;
typedef CORBA::DoubleSeq DoubleSeq;
typedef CORBA::StringSeq StringSeq;

};