summaryrefslogtreecommitdiff
path: root/examples/Web_Crawler/URL_Visitor.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-04-20 17:01:54 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-04-20 17:01:54 +0000
commit46f47d12e434065f8aba2a7ebbadfe58f1c1a251 (patch)
treea50a2a66c881410dd6858ea503a46929262f6d12 /examples/Web_Crawler/URL_Visitor.cpp
parent2c6442e2e31dd9fffee6c4a1b0c05b9eb490da4c (diff)
downloadATCD-46f47d12e434065f8aba2a7ebbadfe58f1c1a251.tar.gz
ChangeLogTag:Wed Apr 20 12:51:17 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'examples/Web_Crawler/URL_Visitor.cpp')
-rw-r--r--examples/Web_Crawler/URL_Visitor.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/Web_Crawler/URL_Visitor.cpp b/examples/Web_Crawler/URL_Visitor.cpp
index 2ad46d42eac..6f2b5dbeeb4 100644
--- a/examples/Web_Crawler/URL_Visitor.cpp
+++ b/examples/Web_Crawler/URL_Visitor.cpp
@@ -13,6 +13,10 @@ URL_Processing_Strategy::URL_Processing_Strategy (URL &url,
{
}
+URL_Processing_Strategy::~URL_Processing_Strategy (void)
+{
+}
+
int
URL_Processing_Strategy::destroy (void)
{
@@ -229,6 +233,10 @@ URL_Validation_Visitation_Strategy_Factory::destroy (void)
return 0;
}
+URL_Visitor::~URL_Visitor (void)
+{
+}
+
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) || \
defined (ACE_HAS_GNU_REPO)
// The explicit instantiations are necessary with g++ 2.91.66
@@ -602,6 +610,10 @@ URL_Visitation_Strategy_Factory::URL_Visitation_Strategy_Factory (URL *url)
{
}
+URL_Visitation_Strategy_Factory::~URL_Visitation_Strategy_Factory (void)
+{
+}
+
URL_Download_Visitation_Strategy_Factory::URL_Download_Visitation_Strategy_Factory (URL *url)
: URL_Visitation_Strategy_Factory (url)
{