X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsystemlibrary.h;h=2b56f4cf61f41e22822890e8f96d9ccdf88d8844;hb=bdc8b6638b486aa668b4a9c6c5cce5f6b5f18222;hp=edd50a25099e98fd88dad77546cc3f3a416e10af;hpb=4f78d9f016482ce1ac7d726852e33e07c090df1b;p=builder.git diff --git a/source/systemlibrary.h b/source/systemlibrary.h index edd50a2..2b56f4c 100644 --- a/source/systemlibrary.h +++ b/source/systemlibrary.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef SYSTEMLIBRARY_H_ #define SYSTEMLIBRARY_H_ @@ -12,9 +19,10 @@ public: SystemLibrary(Builder &, const std::string &); const char *get_type() const { return "SystemLibrary"; } const std::string &get_libname() const { return libname; } - Action *build() { return 0; } private: std::string libname; + + virtual Action *create_action() { return 0; } }; #endif