2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
9 const ACE_CString& URL_Base::get_protocol () const
11 return this->get_scheme ();
15 const ACE_CString& URL_Base::get_path () const
21 void URL_Base::set_path (const ACE_CString& path)
27 void URL_Base::set_query (const ACE_CString& /*query*/)
32 void URL_Base::set_fragment (const ACE_CString& /*fragment*/)
37 const ACE_CString& URL_Base::get_query () const
43 const ACE_CString& URL_Base::get_fragment () const
49 ACE_CString URL_Base::get_authority () const
55 const ACE_CString& URL_INetBase::get_host () const
61 u_short URL_INetBase::get_port () const
67 void URL_INetBase::set_host (const ACE_CString& host)
73 void URL_INetBase::set_port (u_short port)
79 const ACE_CString& URL_INetAuthBase::get_user_info () const
81 return this->userinfo_;
85 void URL_INetAuthBase::set_user_info (const ACE_CString& userinfo)
87 this->userinfo_ = userinfo;
92 ACE_END_VERSIONED_NAMESPACE_DECL