summaryrefslogtreecommitdiff
path: root/examples/Web_Crawler
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-04-20 17:02:24 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-04-20 17:02:24 +0000
commit10b071261ec65d17174a20c9350ae133e5d24b62 (patch)
tree9e85167f346fad2a00b24ae9ceeaba3442a3616c /examples/Web_Crawler
parent46f47d12e434065f8aba2a7ebbadfe58f1c1a251 (diff)
downloadATCD-10b071261ec65d17174a20c9350ae133e5d24b62.tar.gz
ChangeLogTag:Wed Apr 20 12:51:17 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'examples/Web_Crawler')
-rw-r--r--examples/Web_Crawler/URL_Visitor_Factory.cpp6
-rw-r--r--examples/Web_Crawler/URL_Visitor_Factory.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/examples/Web_Crawler/URL_Visitor_Factory.cpp b/examples/Web_Crawler/URL_Visitor_Factory.cpp
index c92f6240bb8..1b8a316b219 100644
--- a/examples/Web_Crawler/URL_Visitor_Factory.cpp
+++ b/examples/Web_Crawler/URL_Visitor_Factory.cpp
@@ -16,7 +16,7 @@ URL_Visitor *
URL_Validation_Visitor_Factory::make_visitor (void)
{
URL_Visitor *v;
-
+
ACE_NEW_RETURN (v,
URL_Validation_Visitor,
0);
@@ -28,7 +28,7 @@ Command_Processor *
URL_Validation_Visitor_Factory::make_command_processor (void)
{
Command_Processor *cp;
-
+
ACE_NEW_RETURN (cp,
Command_Processor,
0);
@@ -39,7 +39,7 @@ URL_Visitor *
URL_Download_Visitor_Factory::make_visitor (void)
{
URL_Visitor *v;
-
+
ACE_NEW_RETURN (v,
URL_Download_Visitor,
0);
diff --git a/examples/Web_Crawler/URL_Visitor_Factory.h b/examples/Web_Crawler/URL_Visitor_Factory.h
index 11018f73a23..9f484afe9f0 100644
--- a/examples/Web_Crawler/URL_Visitor_Factory.h
+++ b/examples/Web_Crawler/URL_Visitor_Factory.h
@@ -39,7 +39,7 @@ public:
virtual URL_Visitor *make_visitor (void) = 0;
// Factory Method that makes the appropriate type of <URL_Visitor>.
-
+
virtual Command_Processor *make_command_processor (void) = 0;
// Factory Method that makes the appropriate type of
// <Command_Processor>.
@@ -52,11 +52,11 @@ class URL_Validation_Visitor_Factory : public URL_Visitor_Factory
public:
virtual URL_Visitor *make_visitor (void);
// Factory Method that makes a <URL_Validation_Visitor>.
-
+
virtual Command_Processor *make_command_processor (void);
// Factory Method that makes a <FIFO_Command_Processor>.
-
+
};
class URL_Download_Visitor_Factory : public URL_Visitor_Factory
@@ -66,7 +66,7 @@ class URL_Download_Visitor_Factory : public URL_Visitor_Factory
public:
virtual URL_Visitor *make_visitor (void);
// Factory Method that makes a <URL_Download_Visitor>.
-
+
virtual Command_Processor *make_command_processor (void);
// Factory Method that makes a <FIFO_Command_Processor>.
};