]> git.tdb.fi Git - builder.git/blob - source/library.h
Rework the Target class hierarchy
[builder.git] / source / library.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef LIBRARY_H_
9 #define LIBRARY_H_
10
11 #include "filetarget.h"
12
13 class Library: public virtual FileTarget
14 {
15 protected:
16         std::string libname;
17
18         Library(Builder &, const Package *, const Msp::FS::Path &, const std::string &);
19 public:
20         const std::string &get_libname() const { return libname; }
21 };
22
23 #endif