summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/struct.idl
blob: 42f215a1a625dd4995974314734d0a8c0a70adc2 (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
struct bar {
	long	b1;
	long	b2;
	string<20> b3;
};

struct bar2 {
	long	b3;
	bar	b4;
};

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

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


interface foo {
	long	op(in bar a, out bar2 b);
};
interface foo2 : foo {
    bar	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;
};