diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /examples/Web_Crawler/URL_Status.cpp | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'examples/Web_Crawler/URL_Status.cpp')
-rw-r--r-- | examples/Web_Crawler/URL_Status.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/Web_Crawler/URL_Status.cpp b/examples/Web_Crawler/URL_Status.cpp deleted file mode 100644 index 35a57420593..00000000000 --- a/examples/Web_Crawler/URL_Status.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -#include "URL_Status.h" - -ACE_RCSID(Web_Crawler, URL_Status, "$Id$") - -URL_Status::URL_Status (STATUS_CODE code) - : status_ (code) -{ -} - -URL_Status::URL_Status (const URL_Status &s) - : status_ (s.status_) -{ -} - -URL_Status::STATUS_CODE -URL_Status::status (void) const -{ - return this->status_; -} - -void -URL_Status::status (int s) -{ - this->status_ = URL_Status::STATUS_CODE (s); -} - -void -URL_Status::status (URL_Status::STATUS_CODE s) -{ - this->status_ = s; -} - -int URL_Status::destroy (void) -{ - delete this; - return 0; -} |