summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-06 22:36:55 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-06 22:36:55 +0000
commit7f2f1bff2b6f40cc646074646bbb82c59aaf0d26 (patch)
tree47964c3b209979baa5fa078566d738c9a5a55b98 /TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl
parent2cfbfd8012d736491d9b559c9d9cd49f02e08ec6 (diff)
downloadATCD-7f2f1bff2b6f40cc646074646bbb82c59aaf0d26.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_6_11'.ACE-4_6_11
Diffstat (limited to 'TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl')
-rw-r--r--TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl b/TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl
deleted file mode 100644
index 7eedbe786ab..00000000000
--- a/TAO/performance-tests/Cubit/VisiBroker/base_server/cubit.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-
-// @(#)cubit.idl 1.1 95/09/10
-// Copyright 1994-1995 by Sun Microsystems, Inc.
-//
-//#pragma prefix "Eng.SUN.COM"
-//#pragma version Cubit 1.1
-
-interface Cubit {
- octet cube_octet (in octet o);
- short cube_short (in short s);
- long cube_long (in long l);
-
- struct Many {
- octet o; // + 3 bytes padding (normally) ...
- long l;
- short s; // + 2 bytes padding (normally) ...
- };
-
- Many cube_struct (in Many values);
-
- enum discrim {e_0th, e_1st, e_2nd, e_3rd, e_4th, e_5th};
-
- union oneof
- switch (discrim) {
- // this is an easy union to interpret; no padding
- // is needed between discriminant and value.
- case e_0th:
- octet o;
- case e_1st:
- short s;
- case e_2nd:
- long l;
- case e_3rd:
- default:
- Many cm;
- };
-
- oneof cube_union (in oneof values);
-
- oneway void please_exit ();
-};