]> git.lyx.org Git - lyx.git/blobdiff - src/RowList_fwd.h
Rename .C ==> .cpp for files in src/support, part two
[lyx.git] / src / RowList_fwd.h
index a86fae5e53ed64ca255893dad6f36fe69d3fc711..709b090b1fc6862754db3e2a011e9f584dd49b1c 100644 (file)
 #ifndef ROW_LIST_FWD_H
 #define ROW_LIST_FWD_H
 
+#include "Row.h"
+
 #include <vector>
+#include <map>
+
 
-class Row;
+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