diff options
Diffstat (limited to 'includes/Output.h')
-rw-r--r-- | includes/Output.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/Output.h b/includes/Output.h index 32d4e66..ef6806c 100644 --- a/includes/Output.h +++ b/includes/Output.h @@ -12,6 +12,9 @@ class Output : public Handle { virtual ~Output() {} virtual bool CanWrite(); virtual bool CanRead(); + virtual bool CanSeek(); + virtual off_t seek(off_t, int) throw (GeneralException); + virtual off_t tell(); virtual String GetName(); protected: |