59 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Scalar *>
63 iterator() : m_context(nullptr), m_current(NULL_TAG)
88 return m_current == other.m_current && m_context == other.m_context;
93 return !operator == (other);
96 NXOPENCPPEXPORT value_type operator * ()
const;
113 m_context = other.m_context;
114 m_current = other.m_current;
115 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
116 m_state[i] = other.m_state[i];
118 NXOPENCPPEXPORT
void next();
121 unsigned int m_state[8];