X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finstall.h;h=b50bb7fe613b8f15e558008b6233a14a18fd7be0;hb=b5ad62c2c4c7eeadd881e3f157bde96e4dd2cc0e;hp=503205a021f0a4223e9bb537078193d130d05444;hpb=1a46151c99a406123c4ddfc797a7841baf3e4cc2;p=builder.git diff --git a/source/install.h b/source/install.h index 503205a..b50bb7f 100644 --- a/source/install.h +++ b/source/install.h @@ -3,14 +3,18 @@ #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(); private: + std::string generate_target_name(const Target &); }; #endif