76 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Diagramming::TitleBlock *>
80 iterator() : m_context(nullptr), m_current(NULL_TAG)
105 return m_current == other.m_current && m_context == other.m_context;
110 return !operator == (other);
113 NXOPENCPP_DIAGRAMMINGEXPORT value_type operator * ()
const;
130 m_context = other.m_context;
131 m_current = other.m_current;
132 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
133 m_state[i] = other.m_state[i];
135 NXOPENCPP_DIAGRAMMINGEXPORT
void next();
138 unsigned int m_state[8];