308 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Features::Feature *>
312 iterator() : m_context(nullptr), m_current(NULL_TAG)
337 return m_current == other.m_current && m_context == other.m_context;
342 return !operator == (other);
345 NXOPENCPP_WELDEXPORT value_type operator * ()
const;
362 m_context = other.m_context;
363 m_current = other.m_current;
364 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
365 m_state[i] = other.m_state[i];
367 NXOPENCPP_WELDEXPORT
void next();
370 unsigned int m_state[8];