summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/reopen_include2.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/reopen_include2.idl')
-rw-r--r--TAO/tests/IDL_Test/reopen_include2.idl66
1 files changed, 0 insertions, 66 deletions
diff --git a/TAO/tests/IDL_Test/reopen_include2.idl b/TAO/tests/IDL_Test/reopen_include2.idl
deleted file mode 100644
index 141eecea088..00000000000
--- a/TAO/tests/IDL_Test/reopen_include2.idl
+++ /dev/null
@@ -1,66 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// reopen_include2.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.
-//
-// ============================================================================
-
-#ifndef IDL_TEST_REOPEN_INCLUDE2_IDL
-#define IDL_TEST_REOPEN_INCLUDE2_IDL
-
-#include "reopen_include1.idl"
-
-// #included by reopened modules.idl along with
-// same module in reopen_include1.idl.
-module frag
-{
- struct pug {short leash;};
-};
-
-// These three are reopened in reopened_modules.idl.
-module Y
-{
-};
-
-module X
-{
-};
-
-module XX
-{
- typedef long whah;
-};
-
-module A
-{
- module B
- {
- };
-};
-
-module A
-{
- module B
- {
- interface X2
- {
- string getX2 ();
- };
- };
-};
-
-#endif /* IDL_TEST_REOPEN_INCLUDE2_IDL */