]> git.tdb.fi Git - builder.git/blob - source/compile.h
08c6407c98984685dfe667892ac7174b8fc6a3f7
[builder.git] / source / compile.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef COMPILE_H_
9 #define COMPILE_H_
10
11 #include <msp/path/path.h>
12 #include "externalaction.h"
13
14 class Component;
15 class ObjectFile;
16
17 /**
18 Compiles a source file into an object file.
19 */
20 class Compile: public ExternalAction
21 {
22 public:
23         Compile(Builder &, const ObjectFile &);
24 };
25
26 #endif