]> git.lyx.org Git - lyx.git/blob - src/ParagraphList_fwd.h
Partly fix for bug 1231
[lyx.git] / src / ParagraphList_fwd.h
1 // -*- C++ -*-
2 /**
3  * \file ParagraphList_fwd.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef PARAGRAPH_LIST_FWD_H
13 #define PARAGRAPH_LIST_FWD_H
14
15 #include <vector>
16
17 class Paragraph;
18
19 class ParagraphList : public std::vector<Paragraph>
20 {
21 public:
22         ///
23         typedef std::vector<Paragraph> base_type;
24         ///
25         ParagraphList();
26         ///
27         template <class Iter>
28         ParagraphList(Iter beg, Iter end)
29                 : base_type(beg, end)
30         {}
31 };
32
33 #endif