lyx_mirror/src/ParagraphList.h
Lars Gullik Bjønnes a89f41c028 remove last of NO_STD_LIST stuff
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7103 a592a061-630c-0410-9148-cb99ea01b6c8
2003-06-04 13:04:24 +00:00

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