X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarball.h;h=105a2b1b08a582650ccc2a8f9623a6b214763655;hb=bde362811368647047f3ca13bdec596f092ecffe;hp=6b89ffc0269d02b082f02d6bc17fec52bc4dccab;hpb=66d1078c04849ec17a7343d0494d6ed087e04318;p=builder.git diff --git a/source/tarball.h b/source/tarball.h index 6b89ffc..105a2b1 100644 --- a/source/tarball.h +++ b/source/tarball.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of builder -Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef TARBALL_H_ #define TARBALL_H_ @@ -13,14 +6,10 @@ Distributed under the LGPL class TarBall: public FileTarget { 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: - virtual Action *create_action(); + TarBall(Builder &, const SourcePackage &, const std::string &); - static std::string create_target_name(const SourcePackage &, const std::string &); + const char *get_type() const override { return "TarBall"; } + const SourcePackage *get_package() const; }; #endif