#include <Handle_Set.h>
Collaboration diagram for ACE_Handle_Set_Iterator:
Public Methods | |
ACE_Handle_Set_Iterator (const ACE_Handle_Set &hs) | |
Constructor. | |
~ACE_Handle_Set_Iterator (void) | |
Default dtor. | |
void | reset_state (void) |
ACE_HANDLE | operator() (void) |
void | operator++ (void) |
void | dump (void) const |
Dump the state of an object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Private Attributes | |
const ACE_Handle_Set & | handles_ |
The <Handle_Set> we are iterating through. | |
u_int | handle_index_ |
Index of the bit we're examining in the current <word_num_> word. | |
int | word_num_ |
Number of the word we're iterating over (typically between 0..7). |
|
Constructor.
|
|
Default dtor.
|
|
Dump the state of an object.
|
|
"Next" operator. Returns the next unseen <ACE_HANDLE> in the <Handle_Set> up to <handle_set_.max_handle_>). When all the handles have been seen returns <ACE_INVALID_HANDLE>. Advances the iterator automatically, so you need not call <operator++> (which is now obsolete). |
|
This is a no-op and no longer does anything. It's only here for backwards compatibility. |
|
Reset the state of the iterator by reinitializing the state that we maintain. |
|
Declare the dynamic allocation hooks.
|
|
Index of the bit we're examining in the current <word_num_> word.
|
|
The <Handle_Set> we are iterating through.
|
|
Number of the word we're iterating over (typically between 0..7).
|