Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef TAO_BIDIR_POLICY_PIDL
00021 #define TAO_BIDIR_POLICY_PIDL
00022
00023 #include "tao/Policy.pidl"
00024
00025 #pragma prefix "omg.org"
00026
00027
00028 module BiDirPolicy
00029 {
00030 typedef unsigned short BidirectionalPolicyValue;
00031 const BidirectionalPolicyValue NORMAL = 0;
00032 const BidirectionalPolicyValue BOTH = 1;
00033 const CORBA::PolicyType BIDIRECTIONAL_POLICY_TYPE = 37;
00034
00035
00036
00037 local interface BidirectionalPolicy : CORBA::Policy
00038 {
00039 readonly attribute BidirectionalPolicyValue value;
00040 };
00041 };
00042
00043 #endif