]> git.tdb.fi Git - builder.git/blob - source/link.h
Add Id tag to all files
[builder.git] / source / link.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 LINK_H_
9 #define LINK_H_
10
11 #include "externalaction.h"
12
13 class Executable;
14
15 /**
16 Links object files and libraries to produce an executable.
17 */
18 class Link: public ExternalAction
19 {
20 public:
21         Link(Builder &, const Executable &);
22 };
23
24 #endif