X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftar.h;h=9be26d9debcac1303259c766575d06e2e9ad96bf;hb=HEAD;hp=3719c41ed7806fb0f89c1b1ae9f5b9a2ba790e22;hpb=bde362811368647047f3ca13bdec596f092ecffe;p=builder.git diff --git a/source/tar.h b/source/tar.h deleted file mode 100644 index 3719c41..0000000 --- a/source/tar.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef TAR_H_ -#define TAR_H_ - -#include -#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 &, const std::string &) override; - Task *run(const Target &) const override; -}; - -#endif