]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
Replace per-file copyright notices with a single file
[builder.git] / source / systemlibrary.h
1 #ifndef SYSTEMLIBRARY_H_
2 #define SYSTEMLIBRARY_H_
3
4 #include "library.h"
5
6 /**
7 A library that doesn't belong to any known package.
8 */
9 class SystemLibrary: public Library
10 {
11 public:
12         SystemLibrary(Builder &, const Msp::FS::Path &);
13         virtual const char *get_type() const { return "SystemLibrary"; }
14 private:
15         virtual Action *create_action() { return 0; }
16
17         static std::string extract_libname(const Msp::FS::Path &);
18 };
19
20 #endif