56 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::ExpressionGroup *>
60 iterator() : m_context(nullptr), m_current(NULL_TAG)
85 return m_current == other.m_current && m_context == other.m_context;
90 return !operator == (other);
93 NXOPENCPPEXPORT value_type operator * ()
const;
110 m_context = other.m_context;
111 m_current = other.m_current;
112 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
113 m_state[i] = other.m_state[i];
115 NXOPENCPPEXPORT
void next();
118 unsigned int m_state[8];