]> git.tdb.fi Git - builder.git/blob - source/datatool.h
Delay locating tool executables until the tool is needed
[builder.git] / source / datatool.h
1 #ifndef DATACOMPILER_H_
2 #define DATACOMPILER_H_
3
4 #include "tool.h"
5
6 class DataTool: public Tool
7 {
8 public:
9         DataTool(Builder &);
10
11         virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
12         virtual Target *create_target(const std::list<Target *> &, const std::string &);
13 private:
14         virtual void do_prepare();
15 public:
16         virtual Task *run(const Target &) const;
17 };
18
19 #endif