diff options
Diffstat (limited to 'TAO/tao/Profile_Transport_Resolver.h')
-rw-r--r-- | TAO/tao/Profile_Transport_Resolver.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/tao/Profile_Transport_Resolver.h b/TAO/tao/Profile_Transport_Resolver.h index 34cef016395..2816f63dc2c 100644 --- a/TAO/tao/Profile_Transport_Resolver.h +++ b/TAO/tao/Profile_Transport_Resolver.h @@ -24,6 +24,7 @@ #include "ace/CORBA_macros.h" #include "tao/SystemException.h" +#include "tao/Transport_Selection_Guard.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; @@ -178,7 +179,10 @@ namespace TAO TAO_Stub *stub_; /// The transport selected for this invocation. - TAO_Transport *transport_; + + /// Using the wrapper guard ensures it is available for use with + /// the Transport Current interfaces. + TAO::Transport_Selection_Guard transport_; /// The profile that has been selected for this invocation. TAO_Profile *profile_; |