summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Forward/TreeBase.idl
blob: 666b02e83fe57ccee4fd89d183278dcdd56fde7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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;

};