summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/sequence.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/sequence.idl')
-rw-r--r--TAO/tests/IDL_Test/sequence.idl49
1 files changed, 0 insertions, 49 deletions
diff --git a/TAO/tests/IDL_Test/sequence.idl b/TAO/tests/IDL_Test/sequence.idl
deleted file mode 100644
index 6b685a05e04..00000000000
--- a/TAO/tests/IDL_Test/sequence.idl
+++ /dev/null
@@ -1,49 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// sequence.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.
-//
-// ============================================================================
-
-
-// Bounded string elements of a sequence,
-// require the use of CORBA_Any::to_char.
-
-interface seqTest
-{
- typedef sequence< string<12> > dozens;
-
- void send_dozen (inout dozens bouquets);
-};
-
-// CDR operator declarations and definitions
-// for the sequences were getting generated
-// twice. Now there's an #if !defined guard
-// around them.
-struct twinStruct
- {
- sequence<short> and_;
- sequence<short> or_;
- };
-
-// Nested sequences
-typedef sequence<sequence<short, 5> > outside;
-
-struct nestedSeqStruct
-{
- sequence<sequence<outside>, 7> inside;
-};