89 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Motion::Coupler *>
93 iterator() : m_context(nullptr), m_current(NULL_TAG)
118 return m_current == other.m_current && m_context == other.m_context;
123 return !operator == (other);
126 NXOPENCPP_MOTIONEXPORT value_type operator * ()
const;
143 m_context = other.m_context;
144 m_current = other.m_current;
145 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
146 m_state[i] = other.m_state[i];
148 NXOPENCPP_MOTIONEXPORT
void next();
151 unsigned int m_state[8];