]> git.tdb.fi Git - builder.git/blob - source/unlink.h
Add Id tag to all files
[builder.git] / source / unlink.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef UNLINK_H_
9 #define UNLINK_H_
10
11 #include "action.h"
12
13 class Target;
14
15 class Unlink: public Action
16 {
17 public:
18         Unlink(Builder &, const Target &);
19         int check();
20 };
21
22 #endif