77 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Document::Text *>
81 iterator() : m_context(nullptr), m_current(NULL_TAG)
106 return m_current == other.m_current && m_context == other.m_context;
111 return !operator == (other);
114 DOCUMENTOPENCPPEXPORT value_type operator * ()
const;
131 m_context = other.m_context;
132 m_current = other.m_current;
133 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
134 m_state[i] = other.m_state[i];
136 DOCUMENTOPENCPPEXPORT
void next();
139 unsigned int m_state[8];