60 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::SketchEvaluator *>
64 iterator() : m_context(nullptr), m_current(NULL_TAG)
89 return m_current == other.m_current && m_context == other.m_context;
94 return !operator == (other);
97 NXOPENCPPEXPORT value_type operator * ()
const;
114 m_context = other.m_context;
115 m_current = other.m_current;
116 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
117 m_state[i] = other.m_state[i];
119 NXOPENCPPEXPORT
void next();
122 unsigned int m_state[8];