X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FParagraphList_fwd.h;h=0c8aa6c205c570af99513e74ad07852528e47312;hb=ba62665f966508db5a4de6864f4aa7374c5a5356;hp=8febea1383093182a74f21cce531cbbdbae0954a;hpb=0d43ba149a41e8860dde316ccbd4336d6b0bbdfa;p=lyx.git diff --git a/src/ParagraphList_fwd.h b/src/ParagraphList_fwd.h index 8febea1383..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 +namespace lyx { + +template +class RandomAccessList; class Paragraph; -class ParagraphList : public std::vector -{ -public: - /// - typedef std::vector base_type; - /// - ParagraphList(); - /// - template - ParagraphList(Iter beg, Iter end) - : base_type(beg, end) - {} -}; +typedef RandomAccessList ParagraphList; + +} // namespace lyx #endif