]> 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 d81d31b..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef TAR_H_
-#define TAR_H_
-
-#include <msp/core/thread.h>
-#include "internalaction.h"
-#include "misc.h"
-
-class TarBall;
-
-class Tar: public InternalAction
-{
-public:
-       Tar(Builder &, const TarBall &);
-private:
-       class Worker: public InternalAction::Worker
-       {
-       public:
-               Worker(Tar &);
-       private:
-               Tar &tar;
-
-               void main();
-               void store_number(char *, unsigned, unsigned);
-       };
-
-       const TarBall &tarball;
-       StringList files;
-};
-
-#endif