summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/interface.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/interface.idl')
-rw-r--r--TAO/tests/IDL_Test/interface.idl52
1 files changed, 0 insertions, 52 deletions
diff --git a/TAO/tests/IDL_Test/interface.idl b/TAO/tests/IDL_Test/interface.idl
deleted file mode 100644
index 8df94baa61c..00000000000
--- a/TAO/tests/IDL_Test/interface.idl
+++ /dev/null
@@ -1,52 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// interface.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.
-//
-// ============================================================================
-
-
-
-// Used to be a problem in the get() and set()
-// generated code.
-
-interface Base
-{
- attribute long value;
-};
-
-interface Derived : Base
-{
-};
-
-// The fact that the interface begins with 'foo' was causing
-// problems. The IDL compiler thought the interface was in
-// foo's scope.
-module foo
-{
- struct date
- {
- short month;
- };
-};
-
-interface foostep
-{
- foo::date getDate ();
-};
-
-