]> git.lyx.org Git - lyx.git/blob - src/ParagraphList.h
More 'standard conformant blurb' nonsense.
[lyx.git] / src / ParagraphList.h
1 // -*- C++ -*-
2
3 #ifndef PARAGRAPH_LIST_H
4 #define PARAGRAPH_LIST_H
5
6 #include "paragraph.h"
7
8 #include <list>
9
10 struct ParagraphList : public std::list<Paragraph>
11 {
12 };
13
14 typedef std::pair<ParagraphList::iterator, int> PitPosPair;
15
16 #endif