]> git.tdb.fi Git - builder.git/blobdiff - source/tar.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / tar.h
diff --git a/source/tar.h b/source/tar.h
deleted file mode 100644 (file)
index 3719c41..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef TAR_H_
-#define TAR_H_
-
-#include <msp/core/thread.h>
-#include "internaltask.h"
-#include "tool.h"
-
-class TarBall;
-
-class Tar: public Tool
-{
-private:
-       class Worker: public InternalTask::Worker
-       {
-       private:
-               const TarBall &tarball;
-
-       public:
-               Worker(const TarBall &);
-
-       private:
-               void main() override;
-               void store_number(char *, unsigned, unsigned);
-       };
-
-public:
-       Tar(Builder &);
-
-       Target *create_target(const std::list<Target *> &, const std::string &) override;
-       Task *run(const Target &) const override;
-};
-
-#endif