X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsystemlibrary.h;h=c49c9e426d330351c58b245c2a26563dde4aee5c;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=2b56f4cf61f41e22822890e8f96d9ccdf88d8844;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/systemlibrary.h b/source/systemlibrary.h index 2b56f4c..c49c9e4 100644 --- a/source/systemlibrary.h +++ b/source/systemlibrary.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -15,14 +15,15 @@ A library that doesn't belong to any known package. */ class SystemLibrary: public Target { +private: + std::string libname; + public: SystemLibrary(Builder &, const std::string &); - const char *get_type() const { return "SystemLibrary"; } + virtual const char *get_type() const { return "SystemLibrary"; } const std::string &get_libname() const { return libname; } private: - std::string libname; - - virtual Action *create_action() { return 0; } + virtual Action *create_action() { return 0; } }; #endif