diff options
Diffstat (limited to 'ACE/examples/Web_Crawler/URL.cpp')
-rw-r--r-- | ACE/examples/Web_Crawler/URL.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/ACE/examples/Web_Crawler/URL.cpp b/ACE/examples/Web_Crawler/URL.cpp deleted file mode 100644 index ce52ed892ad..00000000000 --- a/ACE/examples/Web_Crawler/URL.cpp +++ /dev/null @@ -1,39 +0,0 @@ -// $Id$ - -#include "URL.h" - -ACE_RCSID(Web_Crawler, URL, "$Id$") - -Mem_Map_Stream & -URL::stream (void) -{ - return this->stream_; -} - -URL::~URL (void) -{ -} - -const URL_Status & -URL::reply_status (void) -{ - return this->reply_status_; -} - -void -URL::reply_status (const URL_Status &rs) -{ - this->reply_status_ = rs; -} - -const ACE_CString & -URL::content_type (void) -{ - return this->content_type_; -} - -void -URL::content_type (const ACE_CString &ct) -{ - this->content_type_ = ct; -} |