blob: 424c5e5b958cd062eb7e4fa4fe945ff2d3b88452 (
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
79
80
81
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/IDL_Test
//
// = FILENAME
// old_struct.idl
//
// = DESCRIPTION
// Tests of struct IDL constructs
//
// = AUTHORS
// Andy Gokhale <gokhale@dre.vanderbilt.edu>
//
// ============================================================================
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;
};
|