X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarball.h;h=c2fa288321720ca743d2c64485514a00780a7176;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=cadd0325f642c01305b794aadd311c94c6f35ade;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/tarball.h b/source/tarball.h index cadd032..c2fa288 100644 --- a/source/tarball.h +++ b/source/tarball.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -12,14 +12,15 @@ Distributed under the LGPL class TarBall: public Target { +private: + std::string tarname; + public: TarBall(Builder &, const SourcePackage &, const std::string & =std::string()); virtual const char *get_type() const { return "TarBall"; } const SourcePackage *get_package() const; virtual void find_depends(); private: - std::string tarname; - virtual Action *create_action(); static std::string create_target_name(const SourcePackage &, const std::string &);