X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibrary.h;fp=source%2Flibrary.h;h=8d8f13d525e19e1f73428353615adc9eabb356aa;hb=66d1078c04849ec17a7343d0494d6ed087e04318;hp=0000000000000000000000000000000000000000;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/library.h b/source/library.h new file mode 100644 index 0000000..8d8f13d --- /dev/null +++ b/source/library.h @@ -0,0 +1,23 @@ +/* $Id$ + +This file is part of builder +Copyright © 2009 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + +#ifndef LIBRARY_H_ +#define LIBRARY_H_ + +#include "filetarget.h" + +class Library: public virtual FileTarget +{ +protected: + std::string libname; + + Library(Builder &, const Package *, const Msp::FS::Path &, const std::string &); +public: + const std::string &get_libname() const { return libname; } +}; + +#endif