2003-09-06 11:01:50 +00:00
|
|
|
// -*- 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
|
|
|
|
|
2004-11-16 20:41:38 +00:00
|
|
|
#include "lyxrow.h"
|
2003-09-06 11:01:50 +00:00
|
|
|
|
2004-11-16 20:41:38 +00:00
|
|
|
#include <vector>
|
2003-09-06 11:01:50 +00:00
|
|
|
|
2003-10-24 08:33:52 +00:00
|
|
|
typedef std::vector<Row> RowList;
|
2003-09-06 11:01:50 +00:00
|
|
|
|
|
|
|
#endif
|