hm... a bit more testing seems to be in order..

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7968 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2003-10-23 15:09:04 +00:00
parent 629f29ce80
commit 58216db854

View File

@ -12,10 +12,10 @@
#ifndef ROW_LIST_FWD_H
#define ROW_LIST_FWD_H
#include <vector>
#include <list>
class Row;
typedef std::vector<Row> RowList;
typedef std::list<Row> RowList;
#endif