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
|
|
|
|
|
|
|
#include <list>
|
2003-09-06 12:36:58 +00:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
class Paragraph;
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2003-09-06 12:36:58 +00:00
|
|
|
typedef std::list<Paragraph> ParagraphList;
|
2003-05-28 06:47:15 +00:00
|
|
|
|
|
|
|
typedef std::pair<ParagraphList::iterator, int> PitPosPair;
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2002-08-12 00:15:19 +00:00
|
|
|
#endif
|