summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-16 04:58:21 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-16 04:58:21 +0000
commita9f110268a4d6fb4413acd923065ba2d072bb2d6 (patch)
treefdac77881fad91305ba9edcdbd54b2ee0aeb5cfb /ace/Select_Reactor.h
parent7ba52ee273430a5b8046d6f2b0ffdb9aa84cb09d (diff)
downloadATCD-a9f110268a4d6fb4413acd923065ba2d072bb2d6.tar.gz
See ChangeLog:Fri May 15 22:55:51 1998 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ace/Select_Reactor.h')
-rw-r--r--ace/Select_Reactor.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ace/Select_Reactor.h b/ace/Select_Reactor.h
index 0e0fa642aa7..2674189978d 100644
--- a/ace/Select_Reactor.h
+++ b/ace/Select_Reactor.h
@@ -145,6 +145,7 @@ class ACE_Export ACE_Event_Tuple
public:
ACE_Event_Tuple (void);
ACE_Event_Tuple (ACE_Event_Handler* eh, ACE_HANDLE h);
+ ~ACE_Event_Tuple (void);
int operator== (const ACE_Event_Tuple &rhs) const;
// Equality operator.
@@ -175,6 +176,10 @@ class ACE_Export ACE_Select_Reactor_Notify : public ACE_Event_Handler
// passed to <notify>, the appropriate <handle_*> method is
// dispatched in the context of the <ACE_Select_Reactor> thread.
public:
+ ACE_Select_Reactor_Notify (void);
+ ~ACE_Select_Reactor_Notify (void);
+ // Default dtor.
+
// = Initialization and termination methods.
int open (ACE_Select_Reactor *, int disable_notify_pipe);
int close (void);
@@ -237,6 +242,9 @@ public:
ACE_Select_Reactor_Handler_Repository (ACE_Select_Reactor &);
// Default "do-nothing" constructor.
+ ~ACE_Select_Reactor_Handler_Repository (void);
+ // dtor.
+
int open (size_t size);
// Initialize a repository of the appropriate <size>.
@@ -323,6 +331,9 @@ public:
// = Initialization method.
ACE_Select_Reactor_Handler_Repository_Iterator (const ACE_Select_Reactor_Handler_Repository *s);
+ ~ACE_Select_Reactor_Handler_Repository_Iterator (void);
+ // dtor.
+
// = Iteration methods.
int next (ACE_Event_Handler *&next_item);