summaryrefslogtreecommitdiff
path: root/TAO/tao/BiDir_GIOP/BiDirPolicy.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/BiDir_GIOP/BiDirPolicy.pidl')
-rw-r--r--TAO/tao/BiDir_GIOP/BiDirPolicy.pidl44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tao/BiDir_GIOP/BiDirPolicy.pidl b/TAO/tao/BiDir_GIOP/BiDirPolicy.pidl
new file mode 100644
index 00000000000..ae2742d05df
--- /dev/null
+++ b/TAO/tao/BiDir_GIOP/BiDirPolicy.pidl
@@ -0,0 +1,44 @@
+// $Id$
+
+//
+// This file was used to generate the code in
+// BiDirPolicy*.* The command used to generate code
+// is:
+//
+// tao_idl \
+// -Wb,export_macro=TAO_Export \
+// -Wb,export_include="tao/TAO_Export.h" \
+// -Wb,pre_include="ace/pre.h" \
+// -Wb,post_include="ace/post.h" \
+// BiDirPolicy.pidl
+//
+// This is from the GIOP 1.2 spec for Bi Dir IIOP.
+
+#ifndef TAO_BIDIR_POLICY_PIDL
+#define TAO_BIDIR_POLICY_PIDL
+
+#pragma prefix "omg.org"
+
+#include "tao/Policy.pidl"
+
+// Self contained module for Bi-directional GIOP policy
+module BiDirPolicy
+{
+ typedef unsigned short BidirectionalPolicyValue;
+ const BidirectionalPolicyValue NORMAL = 0;
+ const BidirectionalPolicyValue BOTH = 1;
+ const CORBA::PolicyType BIDIRECTIONAL_POLICY_TYPE = 37;
+
+ // @@ This has ben made local. It was not so in the spec. Any reason
+ // that this shouldn't be a local interface ?
+ local interface BidirectionalPolicy : CORBA::Policy
+ {
+ readonly attribute BidirectionalPolicyValue value;
+ };
+};
+
+
+
+#pragma prefix ""
+
+#endif /* TAO_BIDIR_POLICY_PIDL*/