X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffiletarget.h;h=976590f4b67d15a96da867e046d4e9ac62fa3354;hb=HEAD;hp=982b8cb6abce166751d05cd4f5c4b82021503d56;hpb=a40db37e1e681d397d4bfc6c893e15945c533b72;p=builder.git diff --git a/source/filetarget.h b/source/filetarget.h deleted file mode 100644 index 982b8cb..0000000 --- a/source/filetarget.h +++ /dev/null @@ -1,30 +0,0 @@ -/* $Id$ - -This file is part of builder -Copyright © 2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#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; - unsigned size; - - FileTarget(Builder &, const Package *, const Msp::FS::Path &); -public: - const Msp::FS::Path &get_path() const { return path; } - unsigned get_size() const { return size; } -}; - -#endif