X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.h;h=d58d821ccd1ab41c365fdf395f642cec4a797937;hb=4d0d003b022943d8a0e39ba19078bab8d32d8857;hp=eecbcbdc1bb4182c9ad897005a93d159ef16bf53;hpb=59ac0a44d6edf179c01604c6ced744873213f855;p=builder.git diff --git a/source/link.h b/source/link.h index eecbcbd..d58d821 100644 --- a/source/link.h +++ b/source/link.h @@ -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