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.idl46
1 files changed, 0 insertions, 46 deletions
diff --git a/TAO/tests/DynAny_Test/da_tests.idl b/TAO/tests/DynAny_Test/da_tests.idl
deleted file mode 100644
index a3e8baa33ce..00000000000
--- a/TAO/tests/DynAny_Test/da_tests.idl
+++ /dev/null
@@ -1,46 +0,0 @@
-/* -*- C++ -*- */
-//
-// $Id$
-
-#include <orb.idl>
-
-module DynAnyTests
-{
- struct enclosed_struct
- {
- float f;
- short s;
- };
-
- struct test_struct
- {
- char c;
- long long ll;
- enclosed_struct es;
- };
-
- typedef sequence<string> test_seq;
-
- const unsigned long DIM = 2;
- typedef long test_array [DIM];
-
- enum test_enum
- {
- TE_ZEROTH,
- TE_FIRST,
- TE_SECOND,
- TE_THIRD
- };
-
- union test_union switch (test_enum)
- {
- case TE_SECOND:
- CORBA::TypeCode tc;
- case TE_FIRST:
- short s;
- case TE_THIRD:
- string str;
- case TE_ZEROTH:
- octet o;
- };
-};