X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvirtualtarget.h;h=8f3d95b0c0b540d16ab0b5dafc21db7235de98ef;hb=HEAD;hp=ecc237b7f6ee37e74d47eca5d2c0c72f509efb09;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/virtualtarget.h b/source/virtualtarget.h deleted file mode 100644 index ecc237b..0000000 --- a/source/virtualtarget.h +++ /dev/null @@ -1,27 +0,0 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef VIRTUALTARGET_H_ -#define VIRTUALTARGET_H_ - -#include "target.h" - -/** -A target that is not associated with any file. -*/ -class VirtualTarget: public Target -{ -public: - VirtualTarget(Builder &b, const std::string &n): Target(b, 0, n) { } - virtual const char *get_type() const { return "VirtualTarget"; } - virtual unsigned count_rebuild(); -private: - virtual void check_rebuild(); - virtual Action *create_action() { return 0; } -}; - -#endif