]> git.lyx.org Git - lyx.git/blobdiff - src/buffer.C
fix linking problem with boost
[lyx.git] / src / buffer.C
index fba66f3317f66cbe9b045d6fc37140bcb6b5aca9..5c07e74c5670af0ccdb2fc37800ec3f9dcd0cd16 100644 (file)
@@ -3343,6 +3343,18 @@ ParIterator Buffer::par_iterator_end()
        return ParIterator();
 }
 
+ParConstIterator Buffer::par_iterator_begin() const
+{
+       return ParConstIterator(&*(paragraphs.begin()));
+}
+
+
+ParConstIterator Buffer::par_iterator_end() const
+{
+       return ParConstIterator();
+}
+
+
 
 void Buffer::addUser(BufferView * u)
 {