281 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Features::Feature *>
285 iterator() : m_context(nullptr), m_current(NULL_TAG)
310 return m_current == other.m_current && m_context == other.m_context;
315 return !operator == (other);
318 NXOPENCPP_DIEEXPORT value_type operator * ()
const;
335 m_context = other.m_context;
336 m_current = other.m_current;
337 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
338 m_state[i] = other.m_state[i];
340 NXOPENCPP_DIEEXPORT
void next();
343 unsigned int m_state[8];