64 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::CoordinateSystem *>
68 iterator() : m_context(nullptr), m_current(NULL_TAG)
93 return m_current == other.m_current && m_context == other.m_context;
98 return !operator == (other);
101 NXOPENCPPEXPORT value_type operator * ()
const;
118 m_context = other.m_context;
119 m_current = other.m_current;
120 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
121 m_state[i] = other.m_state[i];
123 NXOPENCPPEXPORT
void next();
126 unsigned int m_state[8];