]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / bufferlist.h
index ad3ae4da8ccca7b4d995f545cef954cb8c2969e9..0b480edc03de4731b134351dd9369a0f697aa07d 100644 (file)
@@ -18,7 +18,7 @@
 #include <vector>
 
 class Buffer;
-class LatexRunParams;
+class OutputParams;
 
 /**
  * The class holds all all open buffers, and handles construction
@@ -44,7 +44,7 @@ public:
        std::vector<std::string> const getFileNames() const;
 
        /// FIXME
-       void updateIncludedTeXfiles(std::string const &, LatexRunParams const &);
+       void updateIncludedTeXfiles(std::string const &, OutputParams const &);
 
        /// emergency save for all buffers
        void emergencyWriteAll();
@@ -71,6 +71,18 @@ public:
        /// returns a pointer to the buffer whose temppath matches the string
        Buffer * BufferList::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);