summaryrefslogtreecommitdiff
path: root/ACE/tests/Network_Adapters_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Network_Adapters_Test.h')
-rw-r--r--ACE/tests/Network_Adapters_Test.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ACE/tests/Network_Adapters_Test.h b/ACE/tests/Network_Adapters_Test.h
index c49a81410c8..2541e6eafed 100644
--- a/ACE/tests/Network_Adapters_Test.h
+++ b/ACE/tests/Network_Adapters_Test.h
@@ -35,10 +35,10 @@ class Echo_Handler : public ACE_Event_Handler
{
public:
/// Default constructor
- Echo_Handler (void);
+ Echo_Handler ();
/// Destructor
- virtual ~Echo_Handler (void);
+ virtual ~Echo_Handler ();
/**
* Initialization of a handler, performing echo-checks against a
@@ -117,11 +117,11 @@ public:
int dispatch_echo_checks (int first_call = 0);
/// Access to ping_socket.
- ACE_Ping_Socket& ping_socket (void);
+ ACE_Ping_Socket& ping_socket ();
/// Returns 1 if a single char of success_status_ is 0
/// (connected).
- int does_echo_test_successful (void);
+ int does_echo_test_successful ();
private:
/// Wrapper for sending/receiving ICMPs.
@@ -171,10 +171,10 @@ public:
Stop_Handler (ACE_Reactor * const reactor = ACE_Reactor::instance ());
// Destructor.
- virtual ~Stop_Handler (void);
+ virtual ~Stop_Handler ();
// Initialization. Registers this for SIGINT, SIGTERM and SIGQUIT.
- virtual int open (void);
+ virtual int open ();
// De-registers this from the reactor and stops reactors event_loop.
virtual int handle_close (ACE_HANDLE handle,
@@ -218,10 +218,10 @@ class Repeats_Handler : public ACE_Event_Handler
{
public:
// Constructor.
- Repeats_Handler (void);
+ Repeats_Handler ();
// Destructor.
- virtual ~Repeats_Handler (void);
+ virtual ~Repeats_Handler ();
// Initialization.
virtual int open (Echo_Handler *check_handler,