summaryrefslogtreecommitdiff
path: root/include/CopyJob.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-12-08 13:57:52 +0000
committerPixel <Pixel>2001-12-08 13:57:52 +0000
commita83a43e57be59ed407d98f465d02953af5ae0160 (patch)
tree91aa1ea4a24e5b85ef26686828054e858cec21aa /include/CopyJob.h
parentc54dfe9b844f6c5d8969669f5144e721e2af82b0 (diff)
*hum* some changes...
Diffstat (limited to 'include/CopyJob.h')
-rw-r--r--include/CopyJob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/CopyJob.h b/include/CopyJob.h
index bd859bb..2a886c5 100644
--- a/include/CopyJob.h
+++ b/include/CopyJob.h
@@ -9,14 +9,14 @@
class CopyJob : public Task {
public:
- CopyJob(Handle *, Handle *, ssize_t = -1, bool = false);
+ CopyJob(Handle *, Handle *, ssize_t = -1, bool = false, bool = false);
virtual ~CopyJob();
virtual int Do() throw (GeneralException);
virtual String GetName();
private:
Handle * s, * d;
- bool ds;
+ bool ds, dd;
ssize_t siz, cursiz;
char buffer[COPY_BUFSIZ];
int r;