X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FRowList_fwd.h;h=2208167d64d0e604d00f8320a38482d9bd7e32fa;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=8f79e3e50f38d5fb2cb63e7ba19fde6f60581484;hpb=b0a5773d95a73a57db7a2c9290616757715375c0;p=lyx.git diff --git a/src/RowList_fwd.h b/src/RowList_fwd.h index 8f79e3e50f..2208167d64 100644 --- a/src/RowList_fwd.h +++ b/src/RowList_fwd.h @@ -12,10 +12,24 @@ #ifndef ROW_LIST_FWD_H #define ROW_LIST_FWD_H -#include +#include "lyxrow.h" -class Row; +#include +#include -typedef std::list 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 RowList; +/// +typedef std::map RowSignature; + + +} // namespace lyx #endif