]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphList_fwd.h
* support/qstring_helpers.h: erase ucs4_to_qstring() method.
[lyx.git] / src / ParagraphList_fwd.h
index e3401edaf69c5d173b30b40458143c06a7148bcb..0c8aa6c205c570af99513e74ad07852528e47312 100644 (file)
 #ifndef PARAGRAPH_LIST_FWD_H
 #define PARAGRAPH_LIST_FWD_H
 
-#include <list>
-#include <utility>
+namespace lyx {
+
+template <class T>
+class RandomAccessList;
 
 class Paragraph;
 
-typedef std::list<Paragraph> ParagraphList;
+typedef RandomAccessList<Paragraph> ParagraphList;
 
-typedef std::pair<ParagraphList::iterator, int> PitPosPair;
+} // namespace lyx
 
 #endif