]> 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 3f92b15..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef COPY_H_
-#define COPY_H_
-
-#include <msp/core/thread.h>
-#include <msp/path/path.h>
-#include "action.h"
-
-class Package;
-
-class Copy: public Action
-{
-public:
-       Copy(Builder &, const Package &, const Msp::Path::Path &, const Msp::Path::Path &);
-       int check();
-       ~Copy();
-private:
-       class Worker: public Msp::Thread
-       {
-       public:
-               Worker(Copy &i): copy(i), done(false), error(false) { launch(); }
-               bool get_done() const  { return done; }
-               bool get_error() const { return error; }
-       private:
-               Copy &copy;
-               bool done;
-               bool error;
-
-               void main();
-       };
-
-       Msp::Path::Path src;
-       Msp::Path::Path dest;
-       Worker *worker;
-};
-
-#endif