]> git.lyx.org Git - lyx.git/blob - src/ParagraphList_fwd.h
Add GTK bibitem dialog
[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 "paragraph.h"
16
17 #include <vector>
18
19 class ParagraphList : public std::vector<Paragraph>
20 {
21 public:
22         ///
23         typedef std::vector<Paragraph> BaseType;
24         ///
25         ParagraphList();
26         ///
27         template <class Iter>
28         ParagraphList(Iter beg, Iter end)
29                 : BaseType(beg, end)
30         {}
31 };
32
33 #endif