]> git.tdb.fi Git - builder.git/blobdiff - source/compile.h
Builder can build itself now.
[builder.git] / source / compile.h
diff --git a/source/compile.h b/source/compile.h
new file mode 100644 (file)
index 0000000..42ae95c
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef COMPILE_H_
+#define COMPILE_H_
+
+#include <msp/path/path.h>
+#include "externalaction.h"
+
+class Component;
+
+class Compile: public ExternalAction
+{
+public:
+       Compile(Builder &, const Msp::Path::Path &, const Msp::Path::Path &, const Component &);
+private:
+       Msp::Path::Path source;
+       Msp::Path::Path object;
+       const Component &comp;
+};
+
+#endif