X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFontIterator.h;h=87686bdee16994a5d306f0b8bf2ec6598600a315;hb=61c43883ba1b97e0d7f21cbd275a7b9c0cec9de5;hp=7d0250bd4de3240814c0ec55b1d0d4b1937294df;hpb=68b7ef25fb7d2da230d3eb11d6737701abfc2e64;p=lyx.git diff --git a/src/FontIterator.h b/src/FontIterator.h index 7d0250bd4d..87686bdee1 100644 --- a/src/FontIterator.h +++ b/src/FontIterator.h @@ -24,34 +24,45 @@ #include "support/types.h" + +namespace lyx { + +class Buffer; class LyXText; +class Paragraph; class FontIterator : std::iterator { public: /// - FontIterator(LyXText const & text, lyx::par_type pit, lyx::pos_type pos); + FontIterator(Buffer const & buffer, LyXText const & text, + Paragraph const & par, pos_type pos); /// - LyXFont operator*() const; + LyXFont const & operator*() const; /// FontIterator & operator++(); /// LyXFont * operator->(); private: + /// + Buffer const & buffer_; /// LyXText const & text_; /// - lyx::par_type pit_; + Paragraph const & par_; /// - lyx::pos_type pos_; + pos_type pos_; /// LyXFont font_; /// - lyx::pos_type endspan_; + pos_type endspan_; /// - lyx::pos_type bodypos_; + pos_type bodypos_; }; + +} // namespace lyx + #endif // FONTITERATOR_H