diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Buffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Buffer.h b/include/Buffer.h index a858617..98d0a4c 100644 --- a/include/Buffer.h +++ b/include/Buffer.h @@ -50,6 +50,7 @@ class Buffer : public Handle { off_t wseek(off_t, int = SEEK_SET) throw (GeneralException); off_t wtell() const; void reset(); + void SetFakeName(const String &); const Byte * GetBuffer() const; static int GetNbBuffer(); @@ -58,6 +59,7 @@ class Buffer : public Handle { size_t realsiz, bufsiz, ptr, wptr; bool seekable; bool got_eof; + String fake_name; static int nb_buffer; }; |