summaryrefslogtreecommitdiff
path: root/include/Buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Buffer.h')
-rw-r--r--include/Buffer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Buffer.h b/include/Buffer.h
index 47c5c5a..0256853 100644
--- a/include/Buffer.h
+++ b/include/Buffer.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Buffer.h,v 1.23 2007-09-17 08:33:25 pixel Exp $ */
+/* $Id: Buffer.h,v 1.24 2008-01-21 17:55:43 pixel Exp $ */
#ifndef __BUFFER_H__
#define __BUFFER_H__
@@ -53,12 +53,14 @@ class Buffer : public Handle {
off_t wtell() const;
void reset();
const Byte * GetBuffer() const;
+ static int GetNbBuffer();
private:
Byte * buffer, zero;
size_t realsiz, bufsiz, ptr, wptr;
bool seekable;
bool got_eof;
+ static int nb_buffer;
};
#endif