From bab663b9012d3dc2be6afe930cb7193957404307 Mon Sep 17 00:00:00 2001 From: pixel Date: Tue, 28 Jan 2003 17:36:57 +0000 Subject: Commit of the day. --- include/CopyJob.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/CopyJob.h b/include/CopyJob.h index 8e4135c..7284b24 100644 --- a/include/CopyJob.h +++ b/include/CopyJob.h @@ -1,6 +1,7 @@ #ifndef __COPYJOB_H__ #define __COPYJOB_H__ +#include #include #include @@ -8,7 +9,7 @@ class CopyJob : public Task { public: - CopyJob(Handle *, Handle *, ssize_t = -1, bool = false, bool = false); + CopyJob(Handle *, Handle *, ssize_t = -1, bool = false, bool = false, int = -1); virtual ~CopyJob(); virtual int Do() throw (GeneralException); virtual String GetName(); @@ -18,7 +19,8 @@ class CopyJob : public Task { bool ds, dd; ssize_t siz, cursiz; char buffer[COPY_BUFSIZ + 1]; - int r, w, tw; + int r, w, tw, shape; + struct timeval start; }; #endif -- cgit v1.2.3