summaryrefslogtreecommitdiff
path: root/ACE/ace/QoS/QoS_Session.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/QoS/QoS_Session.h')
-rw-r--r--ACE/ace/QoS/QoS_Session.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/QoS/QoS_Session.h b/ACE/ace/QoS/QoS_Session.h
index f045e96f718..1bc7da691fc 100644
--- a/ACE/ace/QoS/QoS_Session.h
+++ b/ACE/ace/QoS/QoS_Session.h
@@ -62,14 +62,14 @@ public:
/// to shutup g++.
- virtual ~ACE_QoS_Session (void) {};
+ virtual ~ACE_QoS_Session () {};
/// Open a QoS session [dest IP, dest port, Protocol ID].
virtual int open (ACE_INET_Addr dest_addr,
ACE_Protocol_ID protocol_id) = 0;
/// Close the QoS Session.
- virtual int close (void) = 0;
+ virtual int close () = 0;
/// Returns the QoS in the current session.
virtual ACE_QoS qos () const = 0;
@@ -97,7 +97,7 @@ public:
* underlying session. This method updates the QoS object associated
* with this session.
*/
- virtual int update_qos (void) = 0;
+ virtual int update_qos () = 0;
/// Get/Set methods for the flags_.
virtual ACE_End_Point_Type flags () const = 0;
@@ -110,12 +110,12 @@ public:
virtual void session_id (const int session_id) = 0;
/// Get the file descriptor on which RSVP events will occur.
- virtual ACE_HANDLE rsvp_events_handle (void) = 0;
+ virtual ACE_HANDLE rsvp_events_handle () = 0;
virtual void rsvp_event_type (RSVP_Event_Type event_type) = 0;
///Set the RAPI event that last occurred
- virtual RSVP_Event_Type rsvp_event_type (void) = 0;
+ virtual RSVP_Event_Type rsvp_event_type () = 0;
///Get the RAPI event that last occurred
@@ -143,7 +143,7 @@ public:
* meaningful only when the underlying implementation has
* versioning.
*/
- virtual int version (void) = 0;
+ virtual int version () = 0;
protected:
/// Source port if this is a Sender session. Used for rapi_sender ().