]> git.tdb.fi Git - builder.git/blobdiff - source/virtualtarget.h
Add support for statically linking the C++ standard library
[builder.git] / source / virtualtarget.h
index ecc237b7f6ee37e74d47eca5d2c0c72f509efb09..8f3d95b0c0b540d16ab0b5dafc21db7235de98ef 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef VIRTUALTARGET_H_
 #define VIRTUALTARGET_H_
 
@@ -16,12 +9,14 @@ 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) { }
+       VirtualTarget(Builder &, const std::string &);
+
        virtual const char *get_type() const { return "VirtualTarget"; }
-       virtual unsigned count_rebuild();
 private:
        virtual void check_rebuild();
-       virtual Action *create_action() { return 0; }
+
+public:
+       virtual Task *build();
 };
 
 #endif