NAME
ACE_Handle_Set_Iterator -
Iterator for the ACE_Handle_Set abstraction.
SYNOPSIS
#include <ace/Handle_Set.h>
class ACE_Handle_Set_Iterator
{
public:
ACE_Handle_Set_Iterator (const ACE_Handle_Set &);
ACE_HANDLE operator ()(void);
void operator++ (void);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
private:
const ACE_Handle_Set &handles_;
int num_;
size_t index_;
fd_mask val_;
};
PUBLIC MEMBERS
ACE_Handle_Set_Iterator (const ACE_Handle_Set &);
ACE_HANDLE operator ()(void);
void operator++ (void);
void dump (void) const;
Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
Declare the dynamic allocation hooks.
PRIVATE MEMBERS
const ACE_Handle_Set &handles_;
The Handle_Set we are iterating through.
int num_;
Number of the word we're iterating on.
size_t index_;
Index of the current num_ word.
fd_mask val_;
AUTHOR
Doug Schmidt
LIBRARY
ace