]> git.lyx.org Git - lyx.git/blobdiff - src/RowList_fwd.h
* remove various xforms relicts, in particular:
[lyx.git] / src / RowList_fwd.h
index 1682257b0a7f95f2f862b3ec476be2762bd056ec..55e22ab1e2ccb1bc92878720c9f79d5c2bc53e8b 100644 (file)
 #include "lyxrow.h"
 
 #include <vector>
+#include <map>
 
+/**
+ * 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::map<lyx::size_type, lyx::size_type> RowSignature;
 
 #endif