diff options
Diffstat (limited to 'TAO/tao/Messaging_Policy_i.cpp')
-rw-r--r-- | TAO/tao/Messaging_Policy_i.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/TAO/tao/Messaging_Policy_i.cpp b/TAO/tao/Messaging_Policy_i.cpp index 5af3bfd0e0d..b9172202595 100644 --- a/TAO/tao/Messaging_Policy_i.cpp +++ b/TAO/tao/Messaging_Policy_i.cpp @@ -145,6 +145,12 @@ TAO_RelativeRoundtripTimeoutPolicy::destroy (CORBA_Environment &) { } +TAO_Cached_Policy_Type +TAO_RelativeRoundtripTimeoutPolicy::_tao_cached_type (void) const +{ + return TAO_CACHED_POLICY_RELATIVE_ROUNDTRIP_TIMEOUT; +} + void TAO_RelativeRoundtripTimeoutPolicy::set_time_value (ACE_Time_Value &time_value) { @@ -287,5 +293,10 @@ TAO_Sync_Scope_Policy::destroy (CORBA_Environment &) ACE_THROW_SPEC ((CORBA::SystemException)) { } +TAO_Cached_Policy_Type +TAO_Sync_Scope_Policy::_tao_cached_type (void) const +{ + return TAO_CACHED_POLICY_SYNC_SCOPE; +} #endif /* TAO_HAS_SYNC_SCOPE_POLICY == 1 */ |