Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / OBV / Forward / TreeBase.idl
blob57d4280b0162d23ceb473b51f15997ca988ae445
1 // Forward declaration to make recursive construct.
2 valuetype BaseNode;
4 //@@ Doesn'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;