summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/URL_Visitor_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/URL_Visitor_Factory.h')
-rw-r--r--ACE/examples/Web_Crawler/URL_Visitor_Factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/Web_Crawler/URL_Visitor_Factory.h b/ACE/examples/Web_Crawler/URL_Visitor_Factory.h
index af0d48a8317..f56b0fc676a 100644
--- a/ACE/examples/Web_Crawler/URL_Visitor_Factory.h
+++ b/ACE/examples/Web_Crawler/URL_Visitor_Factory.h
@@ -34,11 +34,11 @@ public:
virtual ~URL_Visitor_Factory ();
/// Factory Method that makes the appropriate type of <URL_Visitor>.
- virtual URL_Visitor *make_visitor (void) = 0;
+ virtual URL_Visitor *make_visitor () = 0;
/// Factory Method that makes the appropriate type of
/// <Command_Processor>.
- virtual Command_Processor *make_command_processor (void) = 0;
+ virtual Command_Processor *make_command_processor () = 0;
};
/**