summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/da_tests.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DynAny_Test/da_tests.idl')
-rw-r--r--TAO/tests/DynAny_Test/da_tests.idl48
1 files changed, 0 insertions, 48 deletions
diff --git a/TAO/tests/DynAny_Test/da_tests.idl b/TAO/tests/DynAny_Test/da_tests.idl
deleted file mode 100644
index a38177bcea8..00000000000
--- a/TAO/tests/DynAny_Test/da_tests.idl
+++ /dev/null
@@ -1,48 +0,0 @@
-/* -*- C++ -*- */
-//
-// $Id$
-//
-
-module DynAnyTests
-{
- struct enclosed_struct {
- long l;
- string str;
- };
-
-typedef short foo;
-
- struct test_struct {
- foo f;
- double d;
-// enclosed_struct es;
- };
-
- typedef sequence<enclosed_struct> test_seq;
-
- const unsigned long DIM = 3;
- typedef long test_array [DIM];
-
-// typedef long twin_array [DIM];
-
- enum test_enum {
- ZEROTH,
- FIRST,
- SECOND,
- THIRD
- };
-
- union test_union switch (test_enum)
- {
- case SECOND:
- TypeCode tc;
- case FIRST:
- short s;
- case THIRD:
- string str;
- case ZEROTH:
- octet o;
-// default:
-// char c;
- };
-}; \ No newline at end of file