X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FParagraphList_fwd.h;h=df6d55041d9e551c189400bb41ae4179e2318a7c;hb=37e82a546392d43f787826b85481a11f2a27af15;hp=8febea1383093182a74f21cce531cbbdbae0954a;hpb=0d43ba149a41e8860dde316ccbd4336d6b0bbdfa;p=lyx.git diff --git a/src/ParagraphList_fwd.h b/src/ParagraphList_fwd.h index 8febea1383..df6d55041d 100644 --- a/src/ParagraphList_fwd.h +++ b/src/ParagraphList_fwd.h @@ -12,21 +12,21 @@ #ifndef PARAGRAPH_LIST_FWD_H #define PARAGRAPH_LIST_FWD_H -#include +#include "paragraph.h" -class Paragraph; +#include -class ParagraphList : public std::vector +class ParagraphList : public std::vector { public: /// - typedef std::vector base_type; + typedef std::vector BaseType; /// - ParagraphList(); + ParagraphList(); /// template ParagraphList(Iter beg, Iter end) - : base_type(beg, end) + : BaseType(beg, end) {} };