summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Basic/Simple.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/Basic/Simple.h')
-rw-r--r--TAO/orbsvcs/tests/Notify/Basic/Simple.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/tests/Notify/Basic/Simple.h b/TAO/orbsvcs/tests/Notify/Basic/Simple.h
index ad78485c81d..0a63e19b23b 100644
--- a/TAO/orbsvcs/tests/Notify/Basic/Simple.h
+++ b/TAO/orbsvcs/tests/Notify/Basic/Simple.h
@@ -50,7 +50,7 @@ public:
Event_AnyPushSupplier (Simple_Test * test_client);
/// Destructor.
- virtual ~Event_AnyPushSupplier (void);
+ virtual ~Event_AnyPushSupplier ();
protected:
Simple_Test* test_client_;
@@ -62,8 +62,8 @@ class Simple_Test : public Notify_Test_Client
{
public:
// Initialization and termination code
- Simple_Test (void);
- virtual ~Simple_Test (void);
+ Simple_Test ();
+ virtual ~Simple_Test ();
int parse_args (int argc,
ACE_TCHAR *argv[]) ;
@@ -73,20 +73,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_;