]> git.tdb.fi Git - builder.git/blob - source/datatool.h
7996ab57b36c96e3f8016a8fbc328c9be8be3e5b
[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         Target *create_source(const Component &, const Msp::FS::Path &) const override;
12         Target *create_target(const std::list<Target *> &, const std::string &) override;
13         std::string create_build_signature(const BuildInfo &) const override;
14         Task *run(const Target &) const override;
15 };
16
17 #endif