3 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
8 Profile_Transport_Resolver::Profile_Transport_Resolver (
16 , inconsistent_policies_ (0)
17 , is_released_ (false)
23 Profile_Transport_Resolver::stub () const
28 ACE_INLINE CORBA::Object_ptr
29 Profile_Transport_Resolver::object () const
34 ACE_INLINE TAO_Profile *
35 Profile_Transport_Resolver::profile () const
37 return this->profile_;
40 ACE_INLINE TAO_Transport *
41 Profile_Transport_Resolver::transport () const
43 return this->transport_.get ();
47 Profile_Transport_Resolver::blocked_connect () const
49 return this->blocked_;
53 Profile_Transport_Resolver::transport_released () const
55 this->is_released_ = true;
58 ACE_INLINE CORBA::PolicyList *
59 Profile_Transport_Resolver::inconsistent_policies () const
61 return this->inconsistent_policies_;
64 ACE_INLINE CORBA::PolicyList *
65 Profile_Transport_Resolver::steal_inconsistent_policies ()
67 CORBA::PolicyList *tmp = this->inconsistent_policies_;
68 this->inconsistent_policies_ = 0;
73 TAO_END_VERSIONED_NAMESPACE_DECL