X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FParagraphList.h;h=649df312d366bc922acbe874d58c8d9aa496732d;hb=8765ab59cdddad67284007813ef25934ea0042ce;hp=b1e9d6d2869e6eb7eb2a1ea567697b3d366a7f1c;hpb=a89f41c028dfc9eb77a6cc3a6688ee96ea24781d;p=lyx.git diff --git a/src/ParagraphList.h b/src/ParagraphList.h index b1e9d6d286..649df312d3 100644 --- a/src/ParagraphList.h +++ b/src/ParagraphList.h @@ -1,16 +1,28 @@ // -*- C++ -*- +/** + * \file ParagraphList.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS. + */ #ifndef PARAGRAPH_LIST_H #define PARAGRAPH_LIST_H #include "paragraph.h" -#include +#include "support/RandomAccessList.h" -struct ParagraphList : public std::list -{ -}; -typedef std::pair PitPosPair; +namespace lyx { + +/// Container for all kind of Paragraphs used in Lyx. +typedef RandomAccessList ParagraphList; + + +} // namespace lyx #endif