]> 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 d65bb05..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef COPY_H_
-#define COPY_H_
-
-#include "tool.h"
-
-class InstalledFile;
-
-/**
-Copies a file to another place.  Used by the InstalledFile target.
-*/
-class Copy: public Tool
-{
-public:
-       Copy(Builder &);
-
-       Target *create_target(const std::vector<Target *> &, const std::string &) override;
-
-private:
-       static bool _run(const InstalledFile &);
-};
-
-#endif