]> git.lyx.org Git - lyx.git/blob - src/RowList.h
Point fix, earlier forgotten
[lyx.git] / src / RowList.h
1 // -*- C++ -*-
2 /**
3  * \file RowList.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef ROW_LIST_H
13 #define ROW_LIST_H
14
15 #include "lyxrow.h"
16
17 #include <list>
18
19 typedef std::list<Row> RowList;
20
21 #endif