X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdatacompiler.h;fp=source%2Fdatacompiler.h;h=e4c8ea2af54543a871c9458af4cd47ed910f7739;hb=338eefb513953ae55e8e3614c009c242ba8ad74e;hp=0000000000000000000000000000000000000000;hpb=dc00ddd224634c86f0a470f1f6f534be5d3e64a3;p=builder.git diff --git a/source/datacompiler.h b/source/datacompiler.h new file mode 100644 index 0000000..e4c8ea2 --- /dev/null +++ b/source/datacompiler.h @@ -0,0 +1,15 @@ +#ifndef DATACOMPILER_H_ +#define DATACOMPILER_H_ + +#include "tool.h" + +class DataCompiler: public Tool +{ +public: + DataCompiler(Builder &); + + virtual Target *create_target(const std::list &, const std::string &) const; + virtual Task *run(const Target &) const; +}; + +#endif