]> git.tdb.fi Git - builder.git/blobdiff - source/copy.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / copy.h
diff --git a/source/copy.h b/source/copy.h
deleted file mode 100644 (file)
index 6150fad..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef COPY_H_
-#define COPY_H_
-
-#include <msp/core/thread.h>
-#include <msp/fs/path.h>
-#include "internaltask.h"
-#include "tool.h"
-
-class Install;
-
-/**
-Copies a file to another place.  Used by the Install target.
-*/
-class Copy: public Tool
-{
-private:
-       /**
-       A worker thread that actually does the data transfer.
-       */
-       class Worker: public InternalTask::Worker
-       {
-       private:
-               const Install &target;
-
-       public:
-               Worker(const Install &);
-       private:
-               virtual void main();
-       };
-
-public:
-       Copy(Builder &);
-
-       virtual Target *create_target(const std::list<Target *> &, const std::string &) const;
-       virtual Task *run(const Target &) const;
-};
-
-#endif