summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/union2.idl
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-14 08:34:01 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-14 08:34:01 +0000
commit12521f45cd85d2e89125c532bdb0df62409bf164 (patch)
tree832e81ec9b3c5b3b540d569bb4526b23c848c6b2 /TAO/TAO_IDL/idl_specs/union2.idl
parent8f4d76cd59b787031f27fb40c2e3c473e86a3834 (diff)
downloadATCD-12521f45cd85d2e89125c532bdb0df62409bf164.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_6_13'.ACE-4_6_13
Diffstat (limited to 'TAO/TAO_IDL/idl_specs/union2.idl')
-rw-r--r--TAO/TAO_IDL/idl_specs/union2.idl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/TAO_IDL/idl_specs/union2.idl b/TAO/TAO_IDL/idl_specs/union2.idl
deleted file mode 100644
index 843980ac048..00000000000
--- a/TAO/TAO_IDL/idl_specs/union2.idl
+++ /dev/null
@@ -1,23 +0,0 @@
-// $Id$
-
-enum FooDisc {
- FOO1,
- FOO2
-};
-union Foo switch (FooDisc) {
-case FOO1: long x;
-case FOO2: string y;
-default: char z;
-};
-
-
-struct Bar {
- enum BarDisc {
- BAR1,
- BAR2
- } kind;
- union Foo switch (BarDisc) {
- case BAR1: long x;
- case BAR2: long y;
- } addr;
-};