]> git.lyx.org Git - lyx.git/blob - src/ParagraphList_fwd.h
typos
[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 namespace lyx {
16
17 template <class T>
18 class RandomAccessList;
19
20 class Paragraph;
21
22 typedef RandomAccessList<Paragraph> ParagraphList;
23
24 } // namespace lyx
25
26 #endif