mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
a89f41c028
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7103 a592a061-630c-0410-9148-cb99ea01b6c8
17 lines
233 B
C++
17 lines
233 B
C++
// -*- C++ -*-
|
|
|
|
#ifndef PARAGRAPH_LIST_H
|
|
#define PARAGRAPH_LIST_H
|
|
|
|
#include "paragraph.h"
|
|
|
|
#include <list>
|
|
|
|
struct ParagraphList : public std::list<Paragraph>
|
|
{
|
|
};
|
|
|
|
typedef std::pair<ParagraphList::iterator, int> PitPosPair;
|
|
|
|
#endif
|