From 1e6b5ff854b07dfd559795af8b9e775f58f4d6cd Mon Sep 17 00:00:00 2001 From: Pixel Date: Sun, 13 Nov 2011 18:14:41 +0100 Subject: Adding seek and tell aliases to rseek and rtell. --- includes/Handle.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/Handle.h b/includes/Handle.h index 5def509..1d659a9 100644 --- a/includes/Handle.h +++ b/includes/Handle.h @@ -34,8 +34,10 @@ class Handle { virtual ssize_t write(const void * buf, size_t count) throw (GeneralException); void writeString(const char * str, ssize_t len = -1) { if (len < 0) len = strlen(str); write(str, len); } void writeString(const String & str) { write(str.to_charp(), str.strlen()); } + void seek(off_t offset, int whence = SEEK_SET) { rseek(offset, whence); } virtual void rseek(off_t offset, int whence = SEEK_SET) throw (GeneralException); virtual void wseek(off_t offset, int whence = SEEK_SET) throw (GeneralException); + off_t tell() { return rtell(); } virtual off_t rtell() throw (GeneralException); virtual off_t wtell() throw (GeneralException); virtual off_t getSize(); -- cgit v1.2.3