summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib')
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Command.h2
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Command_Builder.h6
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Command_Factory_T.h2
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Driver.h4
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Periodic_Supplier.h2
5 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Command.h b/TAO/orbsvcs/tests/Notify/lib/Command.h
index 6b5ce7b68fc..7321fa1a190 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Command.h
+++ b/TAO/orbsvcs/tests/Notify/lib/Command.h
@@ -63,7 +63,7 @@ protected:
private:
/// Execute the command.
- void execute (void);
+ void execute ();
/// Save the next command to exec.
void next (TAO_Notify_Tests_Command* command);
diff --git a/TAO/orbsvcs/tests/Notify/lib/Command_Builder.h b/TAO/orbsvcs/tests/Notify/lib/Command_Builder.h
index 0a808080a62..728ef7ec277 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Command_Builder.h
+++ b/TAO/orbsvcs/tests/Notify/lib/Command_Builder.h
@@ -35,20 +35,20 @@ class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Command_Builder : public ACE_Servi
{
public:
/// Constructor
- TAO_Notify_Tests_Command_Builder (void);
+ TAO_Notify_Tests_Command_Builder ();
/// Destructor
~TAO_Notify_Tests_Command_Builder ();
/// = Service_Object virtual method overloads.
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
/// Register the factory against the name of the factory.
void _register (ACE_CString command_factory_name, TAO_Notify_Tests_Command_Factory* command_factory);
/// Execute the <start_command_>.
- void execute (void);
+ void execute ();
protected:
/// The starting command. each command executes the next one when done.
diff --git a/TAO/orbsvcs/tests/Notify/lib/Command_Factory_T.h b/TAO/orbsvcs/tests/Notify/lib/Command_Factory_T.h
index 4a36c2364ff..6c2c7fd18e0 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Command_Factory_T.h
+++ b/TAO/orbsvcs/tests/Notify/lib/Command_Factory_T.h
@@ -41,7 +41,7 @@ public:
/// = Service_Object virtual method overloads.
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
/// Create the <COMMAND> command.
TAO_Notify_Tests_Command* create (void);
diff --git a/TAO/orbsvcs/tests/Notify/lib/Driver.h b/TAO/orbsvcs/tests/Notify/lib/Driver.h
index 51400d8712f..054eba9e8f9 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Driver.h
+++ b/TAO/orbsvcs/tests/Notify/lib/Driver.h
@@ -39,7 +39,7 @@ public:
/// Set the command builder.
void command_builder (TAO_Notify_Tests_Command_Builder* cmd_builder);
- virtual int svc (void);
+ virtual int svc ();
// The thread entry point.
void shutdown (void);
@@ -67,7 +67,7 @@ public:
/// Srt the run period.
void run_period (ACE_Time_Value run_period);
- virtual int svc (void);
+ virtual int svc ();
// The thread entry point.
private:
diff --git a/TAO/orbsvcs/tests/Notify/lib/Periodic_Supplier.h b/TAO/orbsvcs/tests/Notify/lib/Periodic_Supplier.h
index 87e51a72053..77000e7abd5 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Periodic_Supplier.h
+++ b/TAO/orbsvcs/tests/Notify/lib/Periodic_Supplier.h
@@ -48,7 +48,7 @@ public:
virtual int activate_task (ACE_Barrier* barrier);
/// task svc
- virtual int svc (void);
+ virtual int svc ();
/// Dump stats.
void dump_stats (ACE_TCHAR* msg, int dump_samples);