X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finstalledfile.h;h=9e886d580a00976672dcd125742adb5234643380;hb=HEAD;hp=0b9a4557ab35313a064997739df1b557322948cd;hpb=f0c501af5d99233efd3a45076ffbe69a71294863;p=builder.git diff --git a/source/installedfile.h b/source/installedfile.h deleted file mode 100644 index 0b9a455..0000000 --- a/source/installedfile.h +++ /dev/null @@ -1,30 +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()); -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; } - const Msp::FS::Path &get_symlink() const { return link; } - virtual Target *get_real_target(); -private: - virtual void check_rebuild(); -}; - -#endif