summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpixel <pixel>2007-06-23 15:36:02 +0000
committerpixel <pixel>2007-06-23 15:36:02 +0000
commit27d5c3b8f8005e5c8fd867739a6db37b5b3bc08e (patch)
tree631dd5253995bb6f1cbd38a57b35995908af712c /include
parentdd689636c1e82bb0c773f98cc3595c3002b12837 (diff)
Adding "GetBuffer" accessor.
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 f62ad72..73225bc 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.21 2007-05-30 11:57:08 pixel Exp $ */
+/* $Id: Buffer.h,v 1.22 2007-06-23 15:36:02 pixel Exp $ */
#ifndef __BUFFER_H__
#define __BUFFER_H__
@@ -51,6 +51,7 @@ class Buffer : public Handle {
off_t wseek(off_t, int = SEEK_SET) throw (GeneralException);
off_t wtell() const;
void reset();
+ const Byte * GetBuffer() const;
private:
Byte * buffer, zero;