]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
Reorder class members
[builder.git] / source / systemlibrary.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef SYSTEMLIBRARY_H_
9 #define SYSTEMLIBRARY_H_
10
11 #include "target.h"
12
13 /**
14 A library that doesn't belong to any known package.
15 */
16 class SystemLibrary: public Target
17 {
18 private:
19         std::string libname;
20
21 public:
22         SystemLibrary(Builder &, const std::string &);
23         virtual const char *get_type() const { return "SystemLibrary"; }
24         const std::string &get_libname() const { return libname; }
25 private:
26         virtual Action *create_action() { return 0; }
27 };
28
29 #endif