]> git.tdb.fi Git - builder.git/blobdiff - source/staticlibrary.h
Add missing includes
[builder.git] / source / staticlibrary.h
index 0d1242f31d96825dd198b4ed23027202d92c1b35..cb27138abe6d67f7264747c12194568e60aebc8c 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 Component &get_component() const { return comp; }
-       Action          *build();
 private:
        const Component &comp;
 
+       virtual Action  *create_action();
+
        std::string generate_target_name(const Component &);
 };