summaryrefslogtreecommitdiff
path: root/TAO/tao/BiDir_GIOP/BiDirPolicy.pidl
blob: 876d32946fa613163d9286d6003f78ffd90cd780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// $Id$

//
//   This file was used to generate the code in
//   BiDirPolicy*.* The command used to generate code
//   is:
//
//     tao_idl -o orig -Ge 1 -Sa -St -Sci \
//          -Wb,export_macro=TAO_BiDirGIOP_Export \
//          -Wb,export_include="bidirgiop_export.h" \
//          -Wb,pre_include="ace/pre.h" \
//          -Wb,post_include="ace/post.h" \
//          -Wb,versioning_begin=TAO_BEGIN_VERSIONED_NAMESPACE_DECL \
//          -Wb,versioning_end=TAO_END_VERSIONED_NAMESPACE_DECL \
//          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 been made local. It was not so in the spec. Any reason
  //    why this shouldn't be a local interface ?
  local interface BidirectionalPolicy : CORBA::Policy
  {
    readonly attribute BidirectionalPolicyValue value;
  };
};

#endif  /* TAO_BIDIR_POLICY_PIDL*/