]> git.tdb.fi Git - builder.git/blobdiff - source/sourcefile.h
Include libmode in library lookup hash
[builder.git] / source / sourcefile.h
index d50612a7f6282173a67db11d8ffc3cbb0b9b63be..ea6ed05f9efab6bc8d547cd5e0b33799dff549de 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 SOURCEFILE_H_
 #define SOURCEFILE_H_
 
@@ -16,10 +23,11 @@ public:
        const char       *get_type() const     { return "SourceFile"; }
        const Component  *get_component() const { return comp; }
        void             find_depends();
-       Action           *build() { return 0; }
 private:
        const Component *comp;
        StringList      includes;
+
+       virtual Action    *create_action()     { return 0; }
 };
 
 #endif