]> git.tdb.fi Git - builder.git/blob - library.h
040affe72d4c7548cde75ab7139c7259a53f332b
[builder.git] / library.h
1 #ifndef LIBRARY_H_
2 #define LIBRARY_H_
3
4 #include "filetarget.h"
5
6 class Library: public virtual FileTarget
7 {
8 protected:
9         std::string libname;
10
11         Library(Builder &, const Package *, const Msp::FS::Path &, const std::string &);
12 public:
13         const std::string &get_libname() const { return libname; }
14 };
15
16 #endif