X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finstalledfile.h;h=9e886d580a00976672dcd125742adb5234643380;hb=6382743d26f8d5bb10a53cb907659bee6614b549;hp=6c6a933d5767ba33bc4c2f0e75e9ffebfd01f144;hpb=8fa75f16e653e22f188bc09c5d04c3cdb5cf8c52;p=builder.git diff --git a/source/installedfile.h b/source/installedfile.h index 6c6a933..9e886d5 100644 --- a/source/installedfile.h +++ b/source/installedfile.h @@ -15,14 +15,25 @@ private: public: InstalledFile(Builder &, const SourcePackage &, FileTarget &, const std::string & =std::string()); +private: + static Msp::FS::Path generate_target_path(const Msp::FS::Path &, const FileTarget &i, const std::string &); + +public: virtual const char *get_type() const { return "InstalledFile"; } FileTarget &get_source() const { return source; } + + /** Sets a symlink for the file. A relative path will be rooted at the + directory the file resides in. */ + void set_symlink(const Msp::FS::Path &); + const Msp::FS::Path &get_symlink() const { return link; } + virtual Target *get_real_target(); private: virtual void check_rebuild(); - static Msp::FS::Path generate_target_path(const FileTarget &i, const std::string &); +public: + virtual void clean(); }; #endif