]> git.lyx.org Git - lyx.git/blob - src/ParagraphList.h
cc81e9df64d808023f9ba55fa4e3cd0819d21183
[lyx.git] / src / ParagraphList.h
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.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef PARAGRAPH_LIST_H
13 #define PARAGRAPH_LIST_H
14
15 #include "Paragraph.h"
16
17 #include "support/RandomAccessList.h"
18
19
20 namespace lyx {
21
22 /// Container for all kind of Paragraphs used in Lyx.
23 typedef RandomAccessList<Paragraph> ParagraphList;
24
25
26 } // namespace lyx
27
28 #endif