]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphList_fwd.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / ParagraphList_fwd.h
index 8febea1383093182a74f21cce531cbbdbae0954a..df6d55041d9e551c189400bb41ae4179e2318a7c 100644 (file)
 #ifndef PARAGRAPH_LIST_FWD_H
 #define PARAGRAPH_LIST_FWD_H
 
-#include <vector>
+#include "paragraph.h"
 
-class Paragraph;
+#include <vector>
 
-class ParagraphList : public std::vector<Paragraph> 
+class ParagraphList : public std::vector<Paragraph>
 {
 public:
        ///
-       typedef std::vector<Paragraph> base_type;
+       typedef std::vector<Paragraph> BaseType;
        ///
-       ParagraphList(); 
+       ParagraphList();
        ///
        template <class Iter>
        ParagraphList(Iter beg, Iter end)
-               : base_type(beg, end)
+               : BaseType(beg, end)
        {}
 };