]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
hopefully fix tex2lyx linking.
[lyx.git] / src / bufferlist.h
index 5d8ddab2e4828699f08ef89c65430ba60ff68571..93d172068604fd7b1215cb0e0405b2e8602647eb 100644 (file)
@@ -17,6 +17,9 @@
 #include <string>
 #include <vector>
 
+
+namespace lyx {
+
 class Buffer;
 class OutputParams;
 
@@ -69,7 +72,19 @@ public:
        /// returns a pointer to the buffer with the given number.
        Buffer * getBuffer(unsigned int);
        /// returns a pointer to the buffer whose temppath matches the string
-       Buffer * BufferList::getBufferFromTmp(std::string const &);
+       Buffer * getBufferFromTmp(std::string const &);
+
+       /** returns a pointer to the buffer that follows argument in
+        * buffer list. The buffer following the last in list is the
+        * first one.
+        */
+       Buffer * next(Buffer const *) const;
+
+       /** returns a pointer to the buffer that precedes argument in
+        * buffer list. The buffer preceding the first in list is the
+        * last one.
+        */
+       Buffer * previous(Buffer const *) const;
 
        /// reset current author for all buffers
        void setCurrentAuthor(std::string const & name, std::string const & email);
@@ -87,4 +102,10 @@ private:
        void emergencyWrite(Buffer * buf);
 };
 
+/// Implementation is in lyx_main.C
+extern BufferList & theBufferList();
+
+
+} // namespace lyx
+
 #endif // BUFFERLIST_H