X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finstalledfile.h;h=9e886d580a00976672dcd125742adb5234643380;hb=HEAD;hp=ef76ae7f60e8ca79b204c7e10122a4c46ec09bb5;hpb=608d496e0fbad60cc8a110b78c7fb46bad4d2b4a;p=builder.git diff --git a/source/installedfile.h b/source/installedfile.h deleted file mode 100644 index ef76ae7..0000000 --- a/source/installedfile.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef INSTALLEDFILE_H_ -#define INSTALLEDFILE_H_ - -#include "sourcepackage.h" -#include "filetarget.h" - -/** -Represents the installation of a file. -*/ -class InstalledFile: public FileTarget -{ -private: - FileTarget &source; - Msp::FS::Path link; - -public: - InstalledFile(Builder &, const SourcePackage &, FileTarget &, const std::string & =std::string()); - virtual const char *get_type() const { return "InstalledFile"; } - FileTarget &get_source() const { return source; } - 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 Msp::FS::Path &, const FileTarget &i, const std::string &); -}; - -#endif