summaryrefslogtreecommitdiff
path: root/TAO/tao/HTTP_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/HTTP_Handler.h')
-rw-r--r--TAO/tao/HTTP_Handler.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/HTTP_Handler.h b/TAO/tao/HTTP_Handler.h
index 60bc2d2869f..4baf60fb1d8 100644
--- a/TAO/tao/HTTP_Handler.h
+++ b/TAO/tao/HTTP_Handler.h
@@ -40,7 +40,7 @@ class TAO_Export TAO_HTTP_Handler : public ACE_Svc_Handler <ACE_SOCK_STREAM, ACE
{
public:
/// Null constructor, insures that it works properly with Connector
- TAO_HTTP_Handler (void);
+ TAO_HTTP_Handler ();
/// Always use this constructor to make HTTP_Handlers
TAO_HTTP_Handler (ACE_Message_Block *mb,
@@ -55,11 +55,11 @@ public:
/// Close down the Blob
virtual int close (u_long flags = 0);
- ~TAO_HTTP_Handler (void);
+ ~TAO_HTTP_Handler ();
protected:
- virtual int send_request (void);
- virtual int receive_reply (void);
+ virtual int send_request ();
+ virtual int receive_reply ();
ACE_Message_Block *mb_;
ACE_TCHAR *filename_;
@@ -85,8 +85,8 @@ public:
private:
//NOTE: these functions return -1 on error
- int send_request (void);
- int receive_reply (void);
+ int send_request ();
+ int receive_reply ();
const char *request_prefix_;
const char *request_suffix_;
};