diff options
author | Pixel <Pixel> | 2001-11-14 22:25:39 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-14 22:25:39 +0000 |
commit | 8694409f2a5531e9f3263e8a42248a3ca91ac14f (patch) | |
tree | b1bba533d7ee9f66b8f470851ff534beac97a7d6 /lib/CopyJob.cc | |
parent | aa92df3c58daefb994da555fb45f2e3ee55f38d5 (diff) |
More advances....
Diffstat (limited to 'lib/CopyJob.cc')
-rw-r--r-- | lib/CopyJob.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CopyJob.cc b/lib/CopyJob.cc index e46e3da..fb8c6e2 100644 --- a/lib/CopyJob.cc +++ b/lib/CopyJob.cc @@ -1,7 +1,7 @@ #include "CopyJob.h" #include "General.h" -CopyJob::CopyJob(Handle * as, Handle * ad, ssize_t asiz) : s(as), d(ad), siz(asiz), cursiz(0), current(0) { } +CopyJob::CopyJob(Handle * as, Handle * ad, ssize_t asiz) : s(as), d(ad), siz(asiz), cursiz(0) { } CopyJob::~CopyJob() { } @@ -30,6 +30,8 @@ int CopyJob::Do() throw (GeneralException) { } cursiz += r; } + + return TASK_DONE; } String CopyJob::GetName() { |