113 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Features::Feature *>
117 iterator() : m_context(nullptr), m_current(NULL_TAG)
142 return m_current == other.m_current && m_context == other.m_context;
147 return !operator == (other);
150 NXOPENCPP_FEATURESEXPORT value_type operator * ()
const;
167 m_context = other.m_context;
168 m_current = other.m_current;
169 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
170 m_state[i] = other.m_state[i];
172 NXOPENCPP_FEATURESEXPORT
void next();
175 unsigned int m_state[8];