]> git.lyx.org Git - lyx.git/blobdiff - src/RowList_fwd.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / RowList_fwd.h
index 8f79e3e50f38d5fb2cb63e7ba19fde6f60581484..168bf6ef709e3441fead0c6c55c9233bae3b206e 100644 (file)
 #ifndef ROW_LIST_FWD_H
 #define ROW_LIST_FWD_H
 
-#include <list>
+#include "lyxrow.h"
 
-class Row;
+#include <vector>
+#include <map>
 
-typedef std::list<Row> RowList;
+
+namespace lyx {
+
+/**
+ * Each paragraph is broken up into a number of rows on the screen.
+ * This is a list of such on-screen rows, ordered from the top row
+ * downwards.
+ */
+typedef std::vector<Row> RowList;
+///
+typedef std::vector<size_type> RowSignature;
+
+
+} // namespace lyx
 
 #endif