]> git.tdb.fi Git - builder.git/blob - source/compile.h
Builder can build itself now.
[builder.git] / source / compile.h
1 #ifndef COMPILE_H_
2 #define COMPILE_H_
3
4 #include <msp/path/path.h>
5 #include "externalaction.h"
6
7 class Component;
8
9 class Compile: public ExternalAction
10 {
11 public:
12         Compile(Builder &, const Msp::Path::Path &, const Msp::Path::Path &, const Component &);
13 private:
14         Msp::Path::Path source;
15         Msp::Path::Path object;
16         const Component &comp;
17 };
18
19 #endif