summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h b/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h
index ee8214651a8..805f58fd42c 100644
--- a/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h
+++ b/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.h
@@ -19,7 +19,7 @@ class FTP_Client_Producer
:public virtual TAO_FlowProducer
{
public:
- FTP_Client_Producer (void);
+ FTP_Client_Producer ();
virtual int get_callback (const char *flowname,
TAO_AV_Callback *&callback);
int set_protocol_object (const char *flowname,
@@ -32,9 +32,9 @@ class FTP_Client_Callback
:public TAO_AV_Callback
{
public:
- FTP_Client_Callback (void);
+ FTP_Client_Callback ();
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);
void set_protocol_object (TAO_AV_Protocol_Object *protocol_object) {this->protocol_object_ = protocol_object;}
@@ -49,15 +49,15 @@ typedef TAO_AV_Endpoint_Reactive_Strategy_A<TAO_StreamEndPoint_A,TAO_VDev,AV_Nul
class Client
{
public:
- Client (void);
+ Client ();
int init (int argc, ACE_TCHAR *argv[]);
- int run (void);
- FILE *file (void);
- const char *flowname (void);
- TAO_StreamCtrl* streamctrl (void);
- AVStreams::protocolSpec protocols (void);
- const char *format (void);
- const char *address (void);
+ int run ();
+ FILE *file ();
+ const char *flowname ();
+ TAO_StreamCtrl* streamctrl ();
+ AVStreams::protocolSpec protocols ();
+ const char *format ();
+ const char *address ();
private:
int parse_args (int argc, ACE_TCHAR *argv[]);
ENDPOINT_STRATEGY endpoint_strategy_;