127 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Point *>
131 iterator() : m_context(nullptr), m_current(NULL_TAG)
156 return m_current == other.m_current && m_context == other.m_context;
161 return !operator == (other);
164 NXOPENCPPEXPORT value_type operator * ()
const;
181 m_context = other.m_context;
182 m_current = other.m_current;
183 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
184 m_state[i] = other.m_state[i];
186 NXOPENCPPEXPORT
void next();
189 unsigned int m_state[8];