]> git.tdb.fi Git - builder.git/blobdiff - source/link.h
Add Id tag to all files
[builder.git] / source / link.h
index eecbcbdc1bb4182c9ad897005a93d159ef16bf53..d58d821ccd1ab41c365fdf395f642cec4a797937 100644 (file)
@@ -1,15 +1,24 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef LINK_H_
 #define LINK_H_
 
 #include "externalaction.h"
 
-class Component;
 class Executable;
 
+/**
+Links object files and libraries to produce an executable.
+*/
 class Link: public ExternalAction
 {
 public:
-       Link(Builder &, const Executable &, const Component &);
+       Link(Builder &, const Executable &);
 };
 
 #endif