]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
* output_plaintext.C: cosmetics in comment: line length cannot be < 0
[lyx.git] / src / bufferlist.h
index 4debd75e87eccaaa945e5e134fbe19634a9f32ee..350e5fc7da80a6e7a24e8040424b561662be984a 100644 (file)
 #ifndef BUFFER_LIST_H
 #define BUFFER_LIST_H
 
+#include "support/docstring.h"
+
 #include <boost/utility.hpp>
 
-#include <string>
 #include <vector>
 
 
@@ -28,9 +29,19 @@ class OutputParams;
  * and deletions of new ones.
  */
 class BufferList : boost::noncopyable {
+public:
+       typedef std::vector<Buffer *>::iterator iterator;
+       typedef std::vector<Buffer *>::const_iterator const_iterator;
+
 public:
        BufferList();
 
+       iterator begin();
+       const_iterator begin() const;
+
+       iterator end();
+       const_iterator end() const;
+
        /// write all buffers, asking the user, returns false if cancelled
        bool quitWriteAll();
 
@@ -90,7 +101,7 @@ public:
        Buffer * previous(Buffer const *) const;
 
        /// reset current author for all buffers
-       void setCurrentAuthor(std::string const & name, std::string const & email);
+       void setCurrentAuthor(docstring const & name, docstring const & email);
 
 private:
        /// ask to save a buffer on quit, returns false if should cancel