X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=5d8ddab2e4828699f08ef89c65430ba60ff68571;hb=69bee02a8901793b34ac5ca6d07e93910cef4005;hp=798ae9d4ad5129969790c9d1a7ef1b4e14ca380c;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index 798ae9d4ad..5d8ddab2e4 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -12,14 +12,13 @@ #ifndef BUFFER_LIST_H #define BUFFER_LIST_H -#include "LString.h" - #include +#include #include class Buffer; -class LatexRunParams; +class OutputParams; /** * The class holds all all open buffers, and handles construction @@ -33,7 +32,7 @@ public: bool quitWriteAll(); /// create a new buffer - Buffer * newBuffer(string const & s, bool ronly = false); + Buffer * newBuffer(std::string const & s, bool ronly = false); /// delete a buffer void release(Buffer * b); @@ -42,10 +41,10 @@ public: void closeAll(); /// returns a vector with all the buffers filenames - std::vector const getFileNames() const; + std::vector const getFileNames() const; /// FIXME - void updateIncludedTeXfiles(string const &, LatexRunParams const &); + void updateIncludedTeXfiles(std::string const &, OutputParams const &); /// emergency save for all buffers void emergencyWriteAll(); @@ -60,18 +59,20 @@ public: Buffer * first(); /// returns true if the buffer exists already - bool exists(string const &) const; + bool exists(std::string const &) const; /// returns true if the buffer is loaded bool isLoaded(Buffer const * b) const; /// returns a pointer to the buffer with the given name. - Buffer * getBuffer(string const &); + Buffer * getBuffer(std::string const &); /// 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 &); /// reset current author for all buffers - void setCurrentAuthor(string const & name, string const & email); + void setCurrentAuthor(std::string const & name, std::string const & email); private: /// ask to save a buffer on quit, returns false if should cancel