summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/generic_object.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/generic_object.idl')
-rw-r--r--TAO/tests/IDL_Test/generic_object.idl37
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/tests/IDL_Test/generic_object.idl b/TAO/tests/IDL_Test/generic_object.idl
deleted file mode 100644
index c1f27021b97..00000000000
--- a/TAO/tests/IDL_Test/generic_object.idl
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// generic_object.idl
-//
-// = DESCRIPTION
-// This file contains examples of IDL code that has
-// caused problems in the past for the TAO IDL
-// compiler. This test is to make sure the problems
-// stay fixed.
-//
-// = AUTHORS
-// Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
-//
-// ============================================================================
-
-// The IDL compiler deals with these in a completely
-// different way that it deals with a derived object,
-// i.e., an interface.
-
-enum ObjectType
- {
- THIS,
- THAT
- };
-
-union Selecter switch (ObjectType)
- {
- case THIS: Object this_object;
- case THAT: Object that_object;
- };
-