X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finstall.h;h=bdabc6e7c3853afd87d5425ba42f10bf14db25a4;hb=7aeaa4ba965f596edad438c02e345a8843f7469a;hp=2aa3280a75778494e664c0a8562c43e17dd12098;hpb=b0eb979b0dc79269cb3bb5bb2e67ef4e80689cfe;p=builder.git diff --git a/source/install.h b/source/install.h index 2aa3280..bdabc6e 100644 --- a/source/install.h +++ b/source/install.h @@ -1,16 +1,27 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef INSTALL_H_ #define INSTALL_H_ #include "target.h" +/** +Represents the installation of a file. +*/ class Install: public Target { public: - Install(Builder &, const Package &, Target &, const std::string &); + Install(Builder &, const Package &, Target &); const char *get_type() const { return "Install"; } - void check_rebuild(); - Action *build(); + void check_rebuild(); + Action *build(); private: + std::string generate_target_name(const Target &); }; #endif