]> git.tdb.fi Git - builder.git/blob - virtualtarget.h
bd39e5fbaf1fcc664af9786e9476f00fc48184f5
[builder.git] / 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
14         virtual const char *get_type() const { return "VirtualTarget"; }
15 private:
16         virtual void check_rebuild();
17 };
18
19 #endif