Update NEWS preparing for alpha1
[lyx.git] / src / ParagraphList.h
bloba57deb4eea7b2a7e8582ef7cdedeb1deb62176f0
1 // -*- C++ -*-
2 /**
3 * \file ParagraphList.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Angus Leeming
9 * Full author contact details are available in file CREDITS.
12 #ifndef PARAGRAPH_LIST_H
13 #define PARAGRAPH_LIST_H
15 #include "Paragraph.h"
17 #include "support/RandomAccessList.h"
20 namespace lyx {
22 /// Container for all kind of Paragraphs used in LyX.
23 class ParagraphList : public RandomAccessList<Paragraph> {
24 public:
25 ///
26 ParagraphList() {}
27 ///
28 template<class InputIterator>
29 ParagraphList(InputIterator first, InputIterator last)
30 : RandomAccessList<Paragraph>(first, last)
34 } // namespace lyx
36 #endif