summaryrefslogtreecommitdiff
path: root/websvcs/lib/URL_Addr.i
diff options
context:
space:
mode:
Diffstat (limited to 'websvcs/lib/URL_Addr.i')
-rw-r--r--websvcs/lib/URL_Addr.i105
1 files changed, 0 insertions, 105 deletions
diff --git a/websvcs/lib/URL_Addr.i b/websvcs/lib/URL_Addr.i
deleted file mode 100644
index 482abda66ab..00000000000
--- a/websvcs/lib/URL_Addr.i
+++ /dev/null
@@ -1,105 +0,0 @@
-// $Id$
-
-// ****************************************************************
-
-ACE_INLINE
-ACE_URL_Addr::ACE_URL_Addr (const ACE_URL_Addr& address)
- : url_ (ACE_OS::strdup (address.url_))
-{
-}
-
-ACE_INLINE LPCTSTR
-ACE_URL_Addr::get_url (void) const
-{
- return this->url_;
-}
-
-ACE_INLINE void
-ACE_URL_Addr::set_url (LPTSTR url)
-{
- this->url_ = url;
-}
-
-// ****************************************************************
-
-ACE_INLINE ACE_INET_Addr
-ACE_HTTP_Addr::get_inet_address (void) const
-{
- return ACE_INET_Addr (this->port_number_, this->hostname_);
-}
-
-ACE_INLINE LPCTSTR
-ACE_HTTP_Addr::get_hostname (void) const
-{
- return this->hostname_;
-}
-
-ACE_INLINE u_short
-ACE_HTTP_Addr::get_port_number (void) const
-{
- return this->port_number_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_HTTP_Addr::get_path (void) const
-{
- return this->path_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_HTTP_Addr::get_query (void) const
-{
- return this->query_;
-}
-
-// ****************************************************************
-
-ACE_INLINE LPCTSTR
-ACE_FTP_Addr::get_user (void) const
-{
- return this->user_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_FTP_Addr::get_hostname (void) const
-{
- return this->hostname_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_FTP_Addr::get_passwd (void) const
-{
- return this->passwd_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_FTP_Addr::get_path (void) const
-{
- return this->path_;
-}
-
-ACE_INLINE ACE_INET_Addr
-ACE_FTP_Addr::get_inet_address (void) const
-{
- return ACE_INET_Addr (ASYS_TEXT ("ftp"), this->hostname_);
-}
-
-// ****************************************************************
-
-ACE_INLINE LPCTSTR
-ACE_Mailto_Addr::get_user (void) const
-{
- return this->user_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_Mailto_Addr::get_hostname (void) const
-{
- return this->hostname_;
-}
-
-ACE_INLINE LPCTSTR
-ACE_Mailto_Addr::get_headers (void) const
-{
- return this->headers_;
-}