summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/Options.h')
-rw-r--r--ACE/examples/Web_Crawler/Options.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ACE/examples/Web_Crawler/Options.h b/ACE/examples/Web_Crawler/Options.h
index 1036fa95b65..7a8b9f02f48 100644
--- a/ACE/examples/Web_Crawler/Options.h
+++ b/ACE/examples/Web_Crawler/Options.h
@@ -40,39 +40,39 @@ public:
/// If non-0 and the link is an HTML file then recursively check all
/// links that are embedded in the body of file.
- int recurse (void) const;
+ int recurse () const;
/// Return the hostname of the initial Web server.
- const ACE_TCHAR *hostname (void) const;
+ const ACE_TCHAR *hostname () const;
/// Return the initial URI.
- const ACE_TCHAR *path_name (void) const;
+ const ACE_TCHAR *path_name () const;
/// String used to filter out which URLs to validate.
- const ACE_TCHAR *url_filter (void) const;
+ const ACE_TCHAR *url_filter () const;
/// Are we debugging?
- int debug (void) const;
+ int debug () const;
/// Are we being verbose?
- int verbose (void) const;
+ int verbose () const;
/// Which order? LIFO|FIFO??
- const ACE_TCHAR *order (void) const;
+ const ACE_TCHAR *order () const;
/// Port #
- int port_no (void) const;
+ int port_no () const;
/// Return the timeout used to prevent hanging on <recv> and
/// <connect> calls to broken servers.
- const ACE_Time_Value *timeout (void) const;
+ const ACE_Time_Value *timeout () const;
// = Get/set the <Command_Processor>.
- Command_Processor *command_processor (void) const;
+ Command_Processor *command_processor () const;
void command_processor (Command_Processor *);
// = Get/set the <URL_Visitor>.
- URL_Visitor *visitor (void) const;
+ URL_Visitor *visitor () const;
void visitor (URL_Visitor *);
// Get the handle_limit.