summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/URL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/URL.cpp')
-rw-r--r--ACE/examples/Web_Crawler/URL.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/examples/Web_Crawler/URL.cpp b/ACE/examples/Web_Crawler/URL.cpp
new file mode 100644
index 00000000000..3df8b54a248
--- /dev/null
+++ b/ACE/examples/Web_Crawler/URL.cpp
@@ -0,0 +1,39 @@
+// $Id$
+
+#include "URL.h"
+
+
+
+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;
+}