]> git.tdb.fi Git - builder.git/blob - source/unlink.h
f26d1637ac6f5ebcbcddb39b6afd357c2d98ac01
[builder.git] / source / unlink.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2007, 2009  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         virtual int check();
20 };
21
22 #endif