109 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Features::Feature *>
113 iterator() : m_context(nullptr), m_current(NULL_TAG)
138 return m_current == other.m_current && m_context == other.m_context;
143 return !operator == (other);
146 NXOPENCPP_FEATURESEXPORT value_type operator * ()
const;
163 m_context = other.m_context;
164 m_current = other.m_current;
165 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
166 m_state[i] = other.m_state[i];
168 NXOPENCPP_FEATURESEXPORT
void next();
171 unsigned int m_state[8];