X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finstall.h;h=fd6472fea6fc40d7e4c40d35c09117ffba67002c;hb=40eb101a642b9ed2e898eec39e0916fa71066b23;hp=2aa3280a75778494e664c0a8562c43e17dd12098;hpb=b0eb979b0dc79269cb3bb5bb2e67ef4e80689cfe;p=builder.git diff --git a/source/install.h b/source/install.h index 2aa3280..fd6472f 100644 --- a/source/install.h +++ b/source/install.h @@ -3,13 +3,16 @@ #include "target.h" +/** +Represents the installation of a file. +*/ class Install: public Target { public: Install(Builder &, const Package &, Target &, const std::string &); const char *get_type() const { return "Install"; } - void check_rebuild(); - Action *build(); + void check_rebuild(); + Action *build(); private: };