]> git.tdb.fi Git - builder.git/blobdiff - source/datacompiler.h
Big rewrite for a more tool-centric approach
[builder.git] / source / datacompiler.h
diff --git a/source/datacompiler.h b/source/datacompiler.h
new file mode 100644 (file)
index 0000000..e4c8ea2
--- /dev/null
@@ -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<Target *> &, const std::string &) const;
+       virtual Task *run(const Target &) const;
+};
+
+#endif