diff options
author | pixel <pixel> | 2004-11-27 21:46:02 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-11-27 21:46:02 +0000 |
commit | ae2779e504ca5ae11a87e047b4536a5f428cce4d (patch) | |
tree | 19604ce1873e9cc98be9b840b894cb7eae341532 /include/CopyJob.h | |
parent | 583964f9f8e954eb57b31663065c5b9e833d045e (diff) |
Large dos2unix commit...
Diffstat (limited to 'include/CopyJob.h')
-rw-r--r-- | include/CopyJob.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/include/CopyJob.h b/include/CopyJob.h index bcc9afe..7284b24 100644 --- a/include/CopyJob.h +++ b/include/CopyJob.h @@ -1,26 +1,26 @@ -#ifndef __COPYJOB_H__
-#define __COPYJOB_H__
-
-#include <sys/time.h>
-#include <Task.h>
-#include <Handle.h>
-
-#define COPY_BUFSIZ 4096
-
-class CopyJob : public Task {
- public:
- CopyJob(Handle *, Handle *, ssize_t = -1, bool = false, bool = false, int = -1);
- virtual ~CopyJob();
- virtual int Do() throw (GeneralException);
- virtual String GetName();
-
- private:
- Handle * s, * d;
- bool ds, dd;
- ssize_t siz, cursiz;
- char buffer[COPY_BUFSIZ + 1];
- int r, w, tw, shape;
- struct timeval start;
-};
-
-#endif
+#ifndef __COPYJOB_H__ +#define __COPYJOB_H__ + +#include <sys/time.h> +#include <Task.h> +#include <Handle.h> + +#define COPY_BUFSIZ 4096 + +class CopyJob : public Task { + public: + CopyJob(Handle *, Handle *, ssize_t = -1, bool = false, bool = false, int = -1); + virtual ~CopyJob(); + virtual int Do() throw (GeneralException); + virtual String GetName(); + + private: + Handle * s, * d; + bool ds, dd; + ssize_t siz, cursiz; + char buffer[COPY_BUFSIZ + 1]; + int r, w, tw, shape; + struct timeval start; +}; + +#endif |