X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffiletarget.h;h=976590f4b67d15a96da867e046d4e9ac62fa3354;hb=HEAD;hp=4363d5a8672f5e8dfbad647570acbe1f22212db5;hpb=c52efe77690dcf620d3b19f750a91422f771942d;p=builder.git diff --git a/source/filetarget.h b/source/filetarget.h deleted file mode 100644 index 4363d5a..0000000 --- a/source/filetarget.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef FILETARGET_H_ -#define FILETARGET_H_ - -#include -#include "target.h" - -/** -An intermediate base class for targets that represent files. Almost all target -classes are derived from this. -*/ -class FileTarget: public Target -{ -protected: - Msp::FS::Path path; - Msp::Time::TimeStamp mtime; - unsigned size; - - FileTarget(Builder &, const Package *, const Msp::FS::Path &); -public: - const Msp::FS::Path &get_path() const { return path; } - const Msp::Time::TimeStamp &get_mtime() const { return mtime; } - unsigned get_size() const { return size; } - - /** - Changes the mtime of the target to the current time. - */ - void touch(); - -protected: - virtual void check_rebuild(); -private: - std::string make_name(const Package *, const Msp::FS::Path &); -}; - -#endif