X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=161f95b7f520a63a2742f7ad0d10322164507795;hb=c4320d24cd2d29c2e77958b4a8fd44f2bd587ca7;hp=4debd75e87eccaaa945e5e134fbe19634a9f32ee;hpb=0ca269ef3974269d7b7dd400aa2fe9f715646ff7;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index 4debd75e87..161f95b7f5 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -28,9 +28,19 @@ class OutputParams; * and deletions of new ones. */ class BufferList : boost::noncopyable { +public: + typedef std::vector::iterator iterator; + typedef std::vector::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();