]> git.tdb.fi Git - builder.git/blob - source/executable.h
Rework the Target class hierarchy
[builder.git] / source / executable.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef EXECUTABLE_H_
9 #define EXECUTABLE_H_
10
11 #include "binary.h"
12
13 class Executable: public Binary
14 {
15 public:
16         Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
17         virtual const char *get_type() const { return "Executable"; }
18 };
19
20 #endif