diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-16 04:58:21 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-16 04:58:21 +0000 |
commit | a9f110268a4d6fb4413acd923065ba2d072bb2d6 (patch) | |
tree | fdac77881fad91305ba9edcdbd54b2ee0aeb5cfb /ace/Handle_Set.h | |
parent | 7ba52ee273430a5b8046d6f2b0ffdb9aa84cb09d (diff) | |
download | ATCD-a9f110268a4d6fb4413acd923065ba2d072bb2d6.tar.gz |
See ChangeLog:Fri May 15 22:55:51 1998 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ace/Handle_Set.h')
-rw-r--r-- | ace/Handle_Set.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ace/Handle_Set.h b/ace/Handle_Set.h index 0dc7a1cf72d..59662920575 100644 --- a/ace/Handle_Set.h +++ b/ace/Handle_Set.h @@ -39,6 +39,11 @@ public: ACE_Handle_Set (const ACE_FD_SET_TYPE &mask); +#if defined (ACE_HAS_WINCE) + ~ACE_Handle_Set (void); + // Default dtor. +#endif /* ACE_HAS_WINCE */ + // = Methods for manipulating bitsets. void reset (void); // Initialize the bitmask to all 0s and reset the associated fields. @@ -124,6 +129,9 @@ public: ACE_Handle_Set_Iterator (const ACE_Handle_Set &hs); // Constructor. + ~ACE_Handle_Set_Iterator (void); + // Default dtor. + ACE_HANDLE operator () (void); // "Next" operator. Returns the next unseen <ACE_HANDLE> in the // <Handle_Set> up to <handle_set_.max_handle_>). When all the |