]> git.lyx.org Git - lyx.git/blob - src/RowList_fwd.h
Allows editing when the Prefs dialog is opened; fix bug 3140:
[lyx.git] / src / RowList_fwd.h
1 // -*- C++ -*-
2 /**
3  * \file RowList_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 ROW_LIST_FWD_H
13 #define ROW_LIST_FWD_H
14
15 #include "lyxrow.h"
16
17 #include <vector>
18 #include <map>
19
20
21 namespace lyx {
22
23 /**
24  * Each paragraph is broken up into a number of rows on the screen.
25  * This is a list of such on-screen rows, ordered from the top row
26  * downwards.
27  */
28 typedef std::vector<Row> RowList;
29 ///
30 typedef std::vector<size_type> RowSignature;
31
32
33 } // namespace lyx
34
35 #endif