X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FParagraphList_fwd.h;h=0c8aa6c205c570af99513e74ad07852528e47312;hb=2734cc154853c61a7ea54bfeea3adc908f68bdc5;hp=df6d55041d9e551c189400bb41ae4179e2318a7c;hpb=1f9d992ce0b5d33341215dc8dece45fe1b5bccf0;p=lyx.git diff --git a/src/ParagraphList_fwd.h b/src/ParagraphList_fwd.h index df6d55041d..0c8aa6c205 100644 --- a/src/ParagraphList_fwd.h +++ b/src/ParagraphList_fwd.h @@ -12,22 +12,15 @@ #ifndef PARAGRAPH_LIST_FWD_H #define PARAGRAPH_LIST_FWD_H -#include "paragraph.h" +namespace lyx { -#include +template +class RandomAccessList; -class ParagraphList : public std::vector -{ -public: - /// - typedef std::vector BaseType; - /// - ParagraphList(); - /// - template - ParagraphList(Iter beg, Iter end) - : BaseType(beg, end) - {} -}; +class Paragraph; + +typedef RandomAccessList ParagraphList; + +} // namespace lyx #endif