summaryrefslogtreecommitdiff
path: root/ACE/ace/QoS/QoS_Decorator.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/QoS/QoS_Decorator.h')
-rw-r--r--ACE/ace/QoS/QoS_Decorator.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/QoS/QoS_Decorator.h b/ACE/ace/QoS/QoS_Decorator.h
index a15d3654bdc..4b578cec30f 100644
--- a/ACE/ace/QoS/QoS_Decorator.h
+++ b/ACE/ace/QoS/QoS_Decorator.h
@@ -43,13 +43,13 @@ class ACE_QoS_Export ACE_QoS_Decorator_Base : public ACE_Event_Handler
public:
// Initialization and termination methods.
/// Constructor.
- ACE_QoS_Decorator_Base (void);
+ ACE_QoS_Decorator_Base ();
/// Constructor.
ACE_QoS_Decorator_Base (ACE_Event_Handler *event_handler);
/// Destructor.
- ~ACE_QoS_Decorator_Base (void);
+ ~ACE_QoS_Decorator_Base ();
/// Forwards the request to its event_handler_ component.
virtual ACE_HANDLE get_handle () const;
@@ -78,7 +78,7 @@ private:
class ACE_QoS_Export ACE_QoS_Event_Handler : public ACE_Event_Handler
{
/// Destructor.
- ~ACE_QoS_Event_Handler (void);
+ ~ACE_QoS_Event_Handler ();
/// Returns the RAPI file descriptor for receiving QoS events.
virtual ACE_HANDLE get_handle () const;
@@ -94,7 +94,7 @@ class ACE_QoS_Export ACE_QoS_Event_Handler : public ACE_Event_Handler
private:
/// Constructor is private because only ACE_QoS_Decorator should
/// create this object.
- ACE_QoS_Event_Handler (void);
+ ACE_QoS_Event_Handler ();
/// The QoS Decorator passes in its base for this handler to use.
ACE_QoS_Event_Handler (ACE_QoS_Decorator_Base *decorator_base);
@@ -120,7 +120,7 @@ class ACE_QoS_Export ACE_QoS_Decorator : public ACE_QoS_Decorator_Base
public:
// Initialization and termination methods.
/// Constructor.
- ACE_QoS_Decorator (void);
+ ACE_QoS_Decorator ();
/// Constructor.
ACE_QoS_Decorator (ACE_Event_Handler *event_handler,
@@ -128,7 +128,7 @@ public:
ACE_Reactor *reactor = ACE_Reactor::instance ());
/// Destructor.
- ~ACE_QoS_Decorator (void);
+ ~ACE_QoS_Decorator ();
/// Calls the base class get_handle ().
virtual ACE_HANDLE get_handle () const;
@@ -141,7 +141,7 @@ public:
/// This method registers the QoS Event Handler with the Reactor
/// to receive RAPI events.
- int init (void);
+ int init ();
private:
/// Requests on the class are forwarded to this base class;