summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/da_tests.idl
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-09 07:08:18 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-09 07:08:18 +0000
commit957681064207962c8e33263c7ebebbb4a83f7af0 (patch)
treed28e87f0be723cf1eed7e0f52298d8153fc8f4cd /TAO/tests/DynAny_Test/da_tests.idl
parent1eeb03769ad41dd4bc5ac7d438cc98680ef55059 (diff)
downloadATCD-ACE-4_6_27.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_6_27'.ACE-4_6_27
Diffstat (limited to 'TAO/tests/DynAny_Test/da_tests.idl')
-rw-r--r--TAO/tests/DynAny_Test/da_tests.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/tests/DynAny_Test/da_tests.idl b/TAO/tests/DynAny_Test/da_tests.idl
deleted file mode 100644
index 40f188e172f..00000000000
--- a/TAO/tests/DynAny_Test/da_tests.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- C++ -*- */
-//
-// $Id$
-//
-
-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 {
- 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;
- };
-};