]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphList.h
hopefully fix tex2lyx linking.
[lyx.git] / src / ParagraphList.h
index 6cb7da38c194314fe55bdfe167abef239aaba032..eab59c1e11aff3f632bd60e102d66d408bb02412 100644 (file)
@@ -1,10 +1,10 @@
 // -*- C++ -*-
 /**
- * \file ParagraphList.h
+ * \file ParagraphList_fwd.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Angus Leeming
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #include "paragraph.h"
 
-#include <list>
+#include "support/RandomAccessList.h"
 
-struct ParagraphList : public std::list<Paragraph>
-{
-};
 
-typedef std::pair<ParagraphList::iterator, int> PitPosPair;
+namespace lyx {
+
+/// Container for all kind of Paragraphs used in Lyx.
+typedef RandomAccessList<Paragraph> ParagraphList;
+
+
+} // namespace lyx
 
 #endif