summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/Latency/ping.h')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Latency/ping.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Latency/ping.h b/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
index d291d427f57..70e3d743bef 100644
--- a/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
+++ b/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
@@ -19,12 +19,12 @@
class Ping_Recv_Callback : public TAO_AV_Callback
{
public:
- Ping_Recv_Callback (void);
- virtual int handle_stop (void);
+ Ping_Recv_Callback ();
+ virtual int handle_stop ();
virtual int receive_frame (ACE_Message_Block *frame,
TAO_AV_frame_info *frame_info = 0,
const ACE_Addr &peer_address = ACE_Addr::sap_any);
- virtual int handle_destroy (void);
+ virtual int handle_destroy ();
protected:
int count_;
};
@@ -32,7 +32,7 @@ public:
class Ping_Recv : public TAO_FlowConsumer
{
public:
- Ping_Recv (void);
+ Ping_Recv ();
virtual int get_callback (const char *flowname,
TAO_AV_Callback *&callback);
@@ -50,7 +50,7 @@ public:
int send_response (ACE_hrtime_t stamp);
virtual int handle_timeout (void *arg);
- virtual int handle_end_stream (void);
+ virtual int handle_end_stream ();
virtual void get_timeout (ACE_Time_Value *&tv,
void *&arg);
};
@@ -58,7 +58,7 @@ public:
class Pong_Send : public TAO_FlowProducer
{
public:
- Pong_Send (void);
+ Pong_Send ();
virtual int get_callback (const char *flowname,
TAO_AV_Callback *&callback);
};