]> 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 a937a891800edc191ee25341ed09c8d1a93a3e73..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>
 {
 public:
        ///
-       typedef std::vector<Paragraph> base_type;
+       typedef std::vector<Paragraph> BaseType;
        ///
        ParagraphList();
        ///
        template <class Iter>
        ParagraphList(Iter beg, Iter end)
-               : base_type(beg, end)
+               : BaseType(beg, end)
        {}
 };