summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/including.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/including.idl')
-rw-r--r--TAO/tests/IDL_Test/including.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/tests/IDL_Test/including.idl b/TAO/tests/IDL_Test/including.idl
deleted file mode 100644
index ae95167818e..00000000000
--- a/TAO/tests/IDL_Test/including.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// including.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.
-//
-// ============================================================================
-
-#include "included.idl"
-
-enum choice
-{
- dog
-};
-
-union myUnion switch (choice)
-{
- // Typedef is in included file
- case dog: Aok::Seq1Type cat;
-};
-
-// Enum discriminator is in included file
-union Bog switch (Agog)
-{
- case Agog1: long bog1;
- case Agog2: long bog2;
- case Agog3: long bog3;
-};
-