summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/GIOP.pidl')
-rw-r--r--TAO/tao/GIOP.pidl60
1 files changed, 0 insertions, 60 deletions
diff --git a/TAO/tao/GIOP.pidl b/TAO/tao/GIOP.pidl
deleted file mode 100644
index 5d569722cb1..00000000000
--- a/TAO/tao/GIOP.pidl
+++ /dev/null
@@ -1,60 +0,0 @@
-//$Id$
-// ================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// GIOP1_2.pidl
-//
-// = DESCRIPTION
-// Some new data types included for GIOP 1.2
-// This file was used to generate the code in
-// GIOP*.* The command used to generate code
-// is:
-//
-// tao_idl
-// -o orig -Ge 1 -GA -I.. -SS
-// -Wb,export_macro=TAO_Export
-// -Wb,export_include="tao/TAO_Export.h"
-// -Wb,pre_include="ace/pre.h"
-// -Wb,post_include="ace/post.h"
-// GIOP.pidl
-//
-// ================================================================
-
-#ifndef TAO_GIOP_PIDL
-#define TAO_GIOP_PIDL
-
-#include "IOP_IOR.pidl"
-
-#pragma prefix "omg.org"
-
-module GIOP
-{
- typedef short AddressingDisposition;
- const short KeyAddr = 0;
- const short ProfileAddr = 1;
- const short ReferenceAddr = 2;
-
- struct Version
- {
- octet major;
- octet minor;
- };
-
- struct IORAddressingInfo
- {
- unsigned long selected_profile_index;
- IOP::IOR ior;
- };
-
- union TargetAddress switch (AddressingDisposition)
- {
- case KeyAddr: CORBA::OctetSeq object_key;
- case ProfileAddr: IOP::TaggedProfile profile;
- case ReferenceAddr: IORAddressingInfo ior;
- };
-};
-
-#endif /* TAO_GIOP_PIDL */