X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftar.h;h=9be26d9debcac1303259c766575d06e2e9ad96bf;hb=HEAD;hp=c11587ecbf1ba17cfe35e5928dc47720c01c21fd;hpb=338eefb513953ae55e8e3614c009c242ba8ad74e;p=builder.git diff --git a/source/tar.h b/source/tar.h deleted file mode 100644 index c11587e..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: - virtual void main(); - void store_number(char *, unsigned, unsigned); - }; - -public: - Tar(Builder &); - - virtual Target *create_target(const std::list &, const std::string &) const; - virtual Task *run(const Target &) const; -}; - -#endif