78 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Routing::Port *>
82 iterator() : m_context(nullptr), m_current(NULL_TAG)
107 return m_current == other.m_current && m_context == other.m_context;
112 return !operator == (other);
115 NXOPENCPP_ROUTINGEXPORT value_type operator * ()
const;
132 m_context = other.m_context;
133 m_current = other.m_current;
134 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
135 m_state[i] = other.m_state[i];
137 NXOPENCPP_ROUTINGEXPORT
void next();
140 unsigned int m_state[8];