lyx_mirror/src/RowList_fwd.h
Angus Leeming b0a5773d95 Reduce 115 dependencies on RowList.h to just 10 dependencies on lyxrow.h.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7692 a592a061-630c-0410-9148-cb99ea01b6c8
2003-09-06 11:01:50 +00:00

22 lines
362 B
C++

// -*- C++ -*-
/**
* \file RowList_fwd.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#ifndef ROW_LIST_FWD_H
#define ROW_LIST_FWD_H
#include <list>
class Row;
typedef std::list<Row> RowList;
#endif