2002-08-12 00:15:19 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file ParagraphList.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2002-08-12 00:15:19 +00:00
|
|
|
|
|
|
|
|
|
#ifndef PARAGRAPH_LIST_H
|
|
|
|
|
#define PARAGRAPH_LIST_H
|
|
|
|
|
|
2003-05-23 22:42:14 +00:00
|
|
|
|
#include "paragraph.h"
|
|
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
2003-05-28 06:47:15 +00:00
|
|
|
|
struct ParagraphList : public std::list<Paragraph>
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef std::pair<ParagraphList::iterator, int> PitPosPair;
|
2003-05-23 22:42:14 +00:00
|
|
|
|
|
2002-08-12 00:15:19 +00:00
|
|
|
|
#endif
|