104 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Xform *>
108 iterator() : m_context(nullptr), m_current(NULL_TAG)
133 return m_current == other.m_current && m_context == other.m_context;
138 return !operator == (other);
141 NXOPENCPPEXPORT value_type operator * ()
const;
158 m_context = other.m_context;
159 m_current = other.m_current;
160 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
161 m_state[i] = other.m_state[i];
163 NXOPENCPPEXPORT
void next();
166 unsigned int m_state[8];