summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Forward/TreeBase.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Forward/TreeBase.idl')
-rw-r--r--TAO/tests/OBV/Forward/TreeBase.idl21
1 files changed, 0 insertions, 21 deletions
diff --git a/TAO/tests/OBV/Forward/TreeBase.idl b/TAO/tests/OBV/Forward/TreeBase.idl
deleted file mode 100644
index 662c919aea5..00000000000
--- a/TAO/tests/OBV/Forward/TreeBase.idl
+++ /dev/null
@@ -1,21 +0,0 @@
-// $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;
-
-};