2002-08-12 00:15:19 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
/**
|
2003-09-06 12:36:58 +00:00
|
|
|
* \file ParagraphList_fwd.h
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2003-09-06 12:36:58 +00:00
|
|
|
* \author Angus Leeming
|
2003-08-23 00:17:00 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
2002-08-12 00:15:19 +00:00
|
|
|
|
2003-09-06 12:36:58 +00:00
|
|
|
#ifndef PARAGRAPH_LIST_FWD_H
|
|
|
|
#define PARAGRAPH_LIST_FWD_H
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
#include <vector>
|
2003-09-06 12:36:58 +00:00
|
|
|
|
|
|
|
class Paragraph;
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2004-04-03 08:37:12 +00:00
|
|
|
class ParagraphList : public std::vector<Paragraph>
|
2004-03-25 09:16:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
typedef std::vector<Paragraph> base_type;
|
|
|
|
///
|
2004-04-03 08:37:12 +00:00
|
|
|
ParagraphList();
|
2004-03-25 09:16:36 +00:00
|
|
|
///
|
|
|
|
template <class Iter>
|
|
|
|
ParagraphList(Iter beg, Iter end)
|
|
|
|
: base_type(beg, end)
|
|
|
|
{}
|
|
|
|
};
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2002-08-12 00:15:19 +00:00
|
|
|
#endif
|