Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / ACE / examples / Web_Crawler / URL.cpp
blobc9eb6fd738271447266c91f8d8a0b3e7790bd46b
1 #include "URL.h"
4 Mem_Map_Stream &
5 URL::stream ()
7 return this->stream_;
10 URL::~URL ()
14 const URL_Status &
15 URL::reply_status ()
17 return this->reply_status_;
20 void
21 URL::reply_status (const URL_Status &rs)
23 this->reply_status_ = rs;
26 const ACE_CString &
27 URL::content_type ()
29 return this->content_type_;
32 void
33 URL::content_type (const ACE_CString &ct)
35 this->content_type_ = ct;