summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Basic/Events.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/Basic/Events.h')
-rw-r--r--TAO/orbsvcs/tests/Notify/Basic/Events.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/tests/Notify/Basic/Events.h b/TAO/orbsvcs/tests/Notify/Basic/Events.h
index 3710f290e09..7c00500116c 100644
--- a/TAO/orbsvcs/tests/Notify/Basic/Events.h
+++ b/TAO/orbsvcs/tests/Notify/Basic/Events.h
@@ -49,7 +49,7 @@ public:
Event_StructuredPushSupplier (Events * test_client);
/// Destructor.
- virtual ~Event_StructuredPushSupplier (void);
+ virtual ~Event_StructuredPushSupplier ();
protected:
Events* test_client_;
@@ -61,8 +61,8 @@ class Events : public Notify_Test_Client
{
public:
// Initialization and termination code.
- Events (void);
- virtual ~Events (void);
+ Events ();
+ virtual ~Events ();
int parse_args (int argc,
ACE_TCHAR *argv[]) ;
@@ -72,20 +72,20 @@ public:
ACE_TCHAR *argv []);
/// Called when an event is received.
- void on_event_received (void);
+ void on_event_received ();
/// Run the test.
- void run_test (void);
+ void run_test ();
/// End the test.
- void end_test (void);
+ void end_test ();
/// check if we got the expected results.
- int check_results (void);
+ int check_results ();
protected:
/// Create EC
- void create_EC (void);
+ void create_EC ();
/// Number of events received so far.
ACE_Atomic_Op <TAO_SYNCH_MUTEX, int> result_count_;