summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpixel <pixel>2004-12-21 22:40:24 +0000
committerpixel <pixel>2004-12-21 22:40:24 +0000
commitcb2a6d2b78ad13977fbc4342344abeb8d6a503c0 (patch)
treea25e5c3c5b2cf0256812050f74e1a8b038f299ca /include
parent713344c7acc276be11261b8584ac176905d9278b (diff)
Huh... Buffers should emulate closing when hitting EOF...
Diffstat (limited to 'include')
-rw-r--r--include/Buffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Buffer.h b/include/Buffer.h
index dceac94..e088f35 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.19 2004-11-27 21:46:02 pixel Exp $ */
+/* $Id: Buffer.h,v 1.20 2004-12-21 22:40:24 pixel Exp $ */
#ifndef __BUFFER_H__
#define __BUFFER_H__
@@ -56,6 +56,7 @@ class Buffer : public Handle {
Byte * buffer, zero;
size_t realsiz, bufsiz, ptr, wptr;
bool seekable;
+ bool got_eof;
};
#endif