summaryrefslogtreecommitdiff
path: root/include/Handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Handle.h')
-rw-r--r--include/Handle.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/Handle.h b/include/Handle.h
index 9b6f88d..4223cf9 100644
--- a/include/Handle.h
+++ b/include/Handle.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Handle.h,v 1.34 2004-11-27 21:46:02 pixel Exp $ */
+/* $Id: Handle.h,v 1.35 2006-01-31 17:02:38 pixel Exp $ */
#ifndef __HANDLE_H__
#define __HANDLE_H__
@@ -70,6 +70,10 @@ class Handle : public Base {
int GetHandle() const;
off_t itell;
void * hFile;
+ virtual ssize_t nwrite(const void *, size_t) throw (GeneralException);
+ virtual ssize_t nread(void *, size_t) throw (GeneralException);
+ virtual int ndup() const throw (GeneralException);
+ virtual int nclose() throw (GeneralException);
private:
ssize_t uwrite(const void *, size_t) throw (GeneralException);
ssize_t uread(void *, size_t);