Methods
| Init | Initializes the enumerator. |
| Next | The implementation of IEnumXXXX::Next. |
| Skip | The implementation of IEnumXXXX::Skip. |
| Reset | The implementation of IEnumXXXX::Reset. |
| Clone | The implementation of IEnumXXXX::Clone. |
Data Members
| m_spUnk | The IUnknown pointer of the object supplying the collection. |
| m_pcollection | A pointer to the STL container holding the items to be enumerated. |
| m_iter | The iterator that represents the enumerator's current position within the collection. |