summaryrefslogtreecommitdiff
path: root/TAO/tests/Abstract_Interface/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Abstract_Interface/test.idl')
-rw-r--r--TAO/tests/Abstract_Interface/test.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/tests/Abstract_Interface/test.idl b/TAO/tests/Abstract_Interface/test.idl
deleted file mode 100644
index 0b7bf4f636f..00000000000
--- a/TAO/tests/Abstract_Interface/test.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-
-exception BadInput
-{
- string message;
-};
-
-abstract interface base
-{
- string base_op (in string inarg)
- raises (BadInput);
-};
-
-interface foo : base
-{
- string foo_op (in string inarg)
- raises (BadInput);
-};
-
-interface passer
-{
- void pass_ops (out base outarg);
- void pass_state (out base outarg);
-};
-
-valuetype BaseNode
-{
- public BaseNode left;
- public BaseNode right;
-};
-
-valuetype StringNode : BaseNode
-{
- public string name;
-};
-
-valuetype TreeController supports base
-{
- public BaseNode root;
-};
-
-