]> git.tdb.fi Git - builder.git/blob - source/virtualtarget.h
a7fd8f6cf94d2a7b5718bdc8c20b1e117b03335a
[builder.git] / source / virtualtarget.h
1 #ifndef VIRTUALTARGET_H_
2 #define VIRTUALTARGET_H_
3
4 #include "target.h"
5
6 /**
7 A target that is not associated with any file.
8 */
9 class VirtualTarget: public Target
10 {
11 public:
12         VirtualTarget(Builder &, const std::string &);
13         virtual const char *get_type() const { return "VirtualTarget"; }
14 private:
15         virtual void check_rebuild();
16 };
17
18 #endif