summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/Command_Processor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/Command_Processor.h')
-rw-r--r--ACE/examples/Web_Crawler/Command_Processor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/Web_Crawler/Command_Processor.h b/ACE/examples/Web_Crawler/Command_Processor.h
index f6bff11ff74..18fb594c0ba 100644
--- a/ACE/examples/Web_Crawler/Command_Processor.h
+++ b/ACE/examples/Web_Crawler/Command_Processor.h
@@ -36,8 +36,8 @@ public:
virtual ~Command ();
/// This is the entry point to execute the command.
- virtual int execute (void) = 0;
- virtual int destroy (void) = 0;
+ virtual int execute () = 0;
+ virtual int destroy () = 0;
};
/**