+
+ // macro to define the bulk of iterator and const_iterator classes
+ #define WX_DEFINE_STRINGIMPL_ITERATOR(iterator_name, ref_type, ptr_type) \
+ public: \
+ typedef wxStringCharType value_type; \
+ typedef ref_type reference; \
+ typedef ptr_type pointer; \
+ typedef int difference_type; \
+ \
+ iterator_name(pointer ptr) : m_ptr(ptr) { } \
+ \
+ reference operator*() const { return *m_ptr; } \
+ \
+ iterator_name& operator++() { m_ptr++; return *this; } \
+ iterator_name operator++(int) \
+ { \
+ const iterator_name tmp(*this); \
+ m_ptr++; \
+ return tmp; \
+ } \
+ \
+ iterator_name& operator--() { m_ptr--; return *this; } \
+ iterator_name operator--(int) \
+ { \
+ const iterator_name tmp(*this); \
+ m_ptr--; \
+ return tmp; \
+ } \
+ \
+ iterator_name operator+(int n) const \
+ { return iterator_name(m_ptr + n); } \
+ iterator_name operator+(size_t n) const \
+ { return iterator_name(m_ptr + n); } \
+ iterator_name operator-(int n) const \
+ { return iterator_name(m_ptr - n); } \
+ iterator_name operator-(size_t n) const \
+ { return iterator_name(m_ptr - n); } \
+ iterator_name& operator+=(int n) \
+ { m_ptr += n; return *this; } \
+ iterator_name& operator+=(size_t n) \
+ { m_ptr += n; return *this; } \
+ iterator_name& operator-=(int n) \
+ { m_ptr -= n; return *this; } \
+ iterator_name& operator-=(size_t n) \
+ { m_ptr -= n; return *this; } \
+ \
+ difference_type operator-(const iterator_name& i) const \
+ { return m_ptr - i.m_ptr; } \
+ \
+ bool operator==(const iterator_name& i) const \
+ { return m_ptr == i.m_ptr; } \
+ bool operator!=(const iterator_name& i) const \
+ { return m_ptr != i.m_ptr; } \
+ \
+ bool operator<(const iterator_name& i) const \
+ { return m_ptr < i.m_ptr; } \
+ bool operator>(const iterator_name& i) const \
+ { return m_ptr > i.m_ptr; } \
+ bool operator<=(const iterator_name& i) const \
+ { return m_ptr <= i.m_ptr; } \
+ bool operator>=(const iterator_name& i) const \
+ { return m_ptr >= i.m_ptr; } \
+ \
+ private: \
+ /* for wxStringImpl use only */ \
+ operator pointer() const { return m_ptr; } \
+ \
+ friend class WXDLLIMPEXP_BASE wxStringImpl; \
+ \
+ pointer m_ptr
+
+ // we need to declare const_iterator in wxStringImpl scope, the friend
+ // declaration inside iterator class itself is not enough, or at least not
+ // for g++ 3.4 (g++ 4 is ok)
+ class const_iterator;
+
+ class iterator
+ {
+ WX_DEFINE_STRINGIMPL_ITERATOR(iterator,
+ wxStringCharType&,
+ wxStringCharType*);
+
+ friend class const_iterator;
+ };
+
+ class const_iterator
+ {
+ public:
+ const_iterator(iterator i) : m_ptr(i.m_ptr) { }
+
+ WX_DEFINE_STRINGIMPL_ITERATOR(const_iterator,
+ const wxStringCharType&,
+ const wxStringCharType*);
+ };
+
+ #undef WX_DEFINE_STRINGIMPL_ITERATOR
+