summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Collocated/Forward/TreeBase.idl
blob: b350133f8eafd203b643c04b3b287e8299380d8f (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;

};