X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=2ca9fefe551d2db3404e8b16ba85323abf66b422;hb=b59621bc59584fb3496459a2be79acfc8476a9a1;hp=ad3ae4da8ccca7b4d995f545cef954cb8c2969e9;hpb=4e136e6f417a5459c7f1b9148d6518aa09fa7c07;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index ad3ae4da8c..2ca9fefe55 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -18,7 +18,7 @@ #include class Buffer; -class LatexRunParams; +class OutputParams; /** * The class holds all all open buffers, and handles construction @@ -44,7 +44,7 @@ public: std::vector 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(); @@ -69,7 +69,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);