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.idl28
1 files changed, 0 insertions, 28 deletions
diff --git a/TAO/tests/IDL_Test/sequence.idl b/TAO/tests/IDL_Test/sequence.idl
index 69f374d1fe2..9be00507897 100644
--- a/TAO/tests/IDL_Test/sequence.idl
+++ b/TAO/tests/IDL_Test/sequence.idl
@@ -35,40 +35,12 @@ exception nasty
// tao/OctetSeqC.h is ever removed.
typedef sequence<CORBA::OctetSeq> OctetSeqSeq;
-// 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);
-};
-
local interface seqLocal
{
};
typedef sequence<seqLocal> seqLocalSeq;
-// Anonymous sequence members must be unique types even if the
-// sequence itself is not, so the member name has been
-// incorported into the sequence class name. #if !defined guards
-// are generated around code for the inner anonymous sequences.
-struct twinStruct
- {
- sequence<sequence<short> > and_;
- sequence<sequence<short> > or_;
- };
-
-// Nested sequences
-typedef sequence<sequence<short, 5> > outside;
-
-struct nestedSeqStruct
-{
- sequence<sequence<outside>, 7> inside;
-};
-
// Tests deeply nested recursive type.
module Deployment
{