X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvirtualtarget.h;h=8f3d95b0c0b540d16ab0b5dafc21db7235de98ef;hb=HEAD;hp=d68dba4cf77c326e5cd870119ea7438d4dd3bf69;hpb=75bdcf13fbd285e2006337ec606ca28fa4ddae9e;p=builder.git diff --git a/source/virtualtarget.h b/source/virtualtarget.h deleted file mode 100644 index d68dba4..0000000 --- a/source/virtualtarget.h +++ /dev/null @@ -1,26 +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 &, const std::string &); - virtual const char *get_type() const { return "VirtualTarget"; } -private: - virtual void check_rebuild(); - virtual Action *create_action() { return 0; } -}; - -#endif