blob: 662c919aea550ff1770a65f3e6c823c14017ba6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// $Id$
// Forward declaration to make recursive construct.
valuetype BaseNode;
//@@ Dosn't work for now
//typedef sequence<BaseNode> BaseNodeSeq;
// Performance test: One may try to pass
// over the wire a cyclic graph and measure
// how quickly TAO evaporates memory ;-)
valuetype BaseNode
{
//@@ TODO:
//public BaseNodeSeq node_seq;
public BaseNode left;
public BaseNode right;
};
|