Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / OBV / Forward / TreeBase.idl
blob666b02e83fe57ccee4fd89d183278dcdd56fde7b
1 // Forward declaration to make recursive construct.
2 valuetype BaseNode;
4 //@@ Dosn't work for now
5 //typedef sequence<BaseNode> BaseNodeSeq;
7 // Performance test: One may try to pass
8 // over the wire a cyclic graph and measure
9 // how quickly TAO evaporates memory ;-)
11 valuetype BaseNode
13 //@@ TODO:
14 //public BaseNodeSeq node_seq;
16 public BaseNode left;
17 public BaseNode right;