X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcefile.h;h=ea6ed05f9efab6bc8d547cd5e0b33799dff549de;hb=be8a901dfc026f61db46d5d64a41cecc619bc97d;hp=d50612a7f6282173a67db11d8ffc3cbb0b9b63be;hpb=b5ad62c2c4c7eeadd881e3f157bde96e4dd2cc0e;p=builder.git diff --git a/source/sourcefile.h b/source/sourcefile.h index d50612a..ea6ed05 100644 --- a/source/sourcefile.h +++ b/source/sourcefile.h @@ -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