]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
* Application.C (Application): initialize correctly current_view_.
[lyx.git] / src / bufferlist.h
index 4debd75e87eccaaa945e5e134fbe19634a9f32ee..161f95b7f520a63a2742f7ad0d10322164507795 100644 (file)
@@ -28,9 +28,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();