X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fdociterator.h;h=7d4c4439681589200460d00067e4be9548204599;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=95b59765bbc02db8bf6e04d2927c2647e0bd738d;hpb=cf4293824f406c03e940bed6bf7274b57629a857;p=lyx.git diff --git a/src/dociterator.h b/src/dociterator.h index 95b59765bb..7d4c443968 100644 --- a/src/dociterator.h +++ b/src/dociterator.h @@ -17,6 +17,9 @@ #include #include + +namespace lyx { + class LyXText; class MathAtom; class Paragraph; @@ -38,10 +41,6 @@ class DocIterator // : public std::vector public: /// type for cell number in inset typedef CursorSlice::idx_type idx_type; - /// type for paragraph numbers positions within a cell - typedef CursorSlice::pit_type pit_type; - /// type for cursor positions within a cell - typedef CursorSlice::pos_type pos_type; /// type for row indices typedef CursorSlice::row_type row_type; /// type for col indices @@ -281,8 +280,6 @@ public: DocIterator asDocIterator(InsetBase * start) const; /// size_t size() const { return data_.size(); } - /// type for cursor positions within a cell - typedef CursorSlice::pos_type pos_type; /// return the position within the paragraph pos_type pos() const { return data_.back().pos(); } /// return the position within the paragraph @@ -300,4 +297,7 @@ private: std::vector data_; }; + +} // namespace lyx + #endif