Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _TAO_ENDPOINT_POLICY_IDL_
00013 #define _TAO_ENDPOINT_POLICY_IDL_
00014
00015
00016 #include "tao/Policy.pidl"
00017 #include "tao/EndpointPolicy/EndpointPolicyType.pidl"
00018
00019 module EndpointPolicy
00020 {
00021 local interface EndpointValueBase
00022 {
00023 readonly attribute unsigned long protocol_tag;
00024 };
00025
00026 typedef sequence<EndpointValueBase> EndpointList;
00027
00028 local interface Policy : CORBA::Policy
00029 {
00030 readonly attribute EndpointList value;
00031 };
00032 };
00033
00034
00035 #endif