]> git.tdb.fi Git - builder.git/blobdiff - source/staticlibrary.h
Add Id tag to all files
[builder.git] / source / staticlibrary.h
index f7f178a7306c5649f049be7c5d6002092d07d9a4..cd0342ea47b950ef88c0b25bc3c5427569018e13 100644 (file)
@@ -1,3 +1,10 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef STATICLIB_H_
 #define STATICLIB_H_
 
 class Component;
 class ObjectFile;
 
+/**
+A static library target.
+*/
 class StaticLibrary: public Target
 {
 public:
        StaticLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
-       const char *get_type() const { return "StaticLibrary"; }
+       const char      *get_type() const      { return "StaticLibrary"; }
        const Component &get_component() const { return comp; }
-       Action *build();
+       Action          *build();
 private:
        const Component &comp;