]> git.tdb.fi Git - builder.git/blob - source/link.h
Add comments
[builder.git] / source / link.h
1 #ifndef LINK_H_
2 #define LINK_H_
3
4 #include "externalaction.h"
5
6 class Executable;
7
8 /**
9 Links object files and libraries to produce an executable.
10 */
11 class Link: public ExternalAction
12 {
13 public:
14         Link(Builder &, const Executable &);
15 };
16
17 #endif