]> git.lyx.org Git - lyx.git/blob - src/RowList.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / RowList.h
1 // -*- C++ -*-
2
3 #ifndef ROW_LIST_H
4 #define ROW_LIST_H
5
6 #include "lyxrow.h"
7
8 #include <list>
9
10 typedef std::list<Row> RowList;
11
12 #endif