summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Cached_Policies.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/POA_Cached_Policies.inl')
-rw-r--r--TAO/tao/PortableServer/POA_Cached_Policies.inl38
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/POA_Cached_Policies.inl b/TAO/tao/PortableServer/POA_Cached_Policies.inl
index b3699fe3e7d..3bf565f61f6 100644
--- a/TAO/tao/PortableServer/POA_Cached_Policies.inl
+++ b/TAO/tao/PortableServer/POA_Cached_Policies.inl
@@ -74,6 +74,44 @@ namespace TAO
this->server_priority_ = priority;
}
+ ACE_INLINE Cached_Policies::NetworkPriorityModel
+ Cached_Policies::network_priority_model (void) const
+ {
+ return this->network_priority_model_;
+ }
+
+ ACE_INLINE CORBA::Long
+ Cached_Policies::request_diffserv_codepoint (void) const
+ {
+ return this->request_diffserv_codepoint_;
+ }
+
+ ACE_INLINE CORBA::Long
+ Cached_Policies::reply_diffserv_codepoint (void) const
+ {
+ return this->reply_diffserv_codepoint_;
+ }
+
+ ACE_INLINE void
+ Cached_Policies::network_priority_model (
+ NetworkPriorityModel network_priority_model)
+ {
+ this->network_priority_model_ = network_priority_model;
+ }
+
+ ACE_INLINE void
+ Cached_Policies::request_diffserv_codepoint (
+ CORBA::Long diffserv_codepoint)
+ {
+ this->request_diffserv_codepoint_ = diffserv_codepoint;
+ }
+
+ ACE_INLINE void
+ Cached_Policies::reply_diffserv_codepoint (CORBA::Long diffserv_codepoint)
+ {
+ this->reply_diffserv_codepoint_ = diffserv_codepoint;
+ }
+
ACE_INLINE void
Cached_Policies::implicit_activation (PortableServer::ImplicitActivationPolicyValue value)
{