]> git.tdb.fi Git - builder.git/blobdiff - source/unlink.h
Rework the Target class hierarchy
[builder.git] / source / unlink.h
index 106d11c34f645ec5178acf371259b66049858e76..a26ca0eb5421b2e28d41cec390a4f93af2f49ac4 100644 (file)
@@ -1,15 +1,22 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2007, 2009  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef UNLINK_H_
 #define UNLINK_H_
 
 #include "action.h"
 
-class Target;
+class FileTarget;
 
 class Unlink: public Action
 {
 public:
-       Unlink(Builder &, const Target &);
-       int check();
+       Unlink(Builder &, const FileTarget &);
+       virtual int check();
 };
 
 #endif