summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/old_struct.idl
blob: 7a5f38675061f0df582521a21f75e3dd6d7c54fa (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78

//=============================================================================
/**
 *  @file    old_struct.idl
 *
 *  Tests of struct IDL constructs
 *
 *
 *  @author Andy Gokhale <gokhale@dre.vanderbilt.edu>
 */
//=============================================================================


typedef string string_20[20];

struct bar1
{
  long b1;
  long b2;
  string_20 b3;
};

struct bar2
{
  long b3;
  bar1  b4;
};

struct bar3
{
  long b1;
  long b2;
  long b3;
};

struct bar4
{
  long b1;
  bar2 b2;
  long b3;
  bar3 b4;
  long b5;
};


interface foo1
{
  long op (in bar1 a, out bar2 b);
};

interface foo2 : foo1
{
  bar1  op2 (in bar2 a);

  long op3 (in long a, out char b);
};


typedef unsigned short Coord;

struct CellPos
{
  Coord row;
  Coord col;
};

struct CellPos2
{
  unsigned short row;
  unsigned short col;
};

struct CellPos3
{
  Coord row;
  Coord col;
  unsigned short col2;
};