]> git.tdb.fi Git - builder.git/blob - source/sharedlibrary.h
Rework the Target class hierarchy
[builder.git] / source / sharedlibrary.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007, 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef SHAREDLIB_H_
9 #define SHAREDLIB_H_
10
11 #include "binary.h"
12 #include "library.h"
13
14 /**
15 Represents a shared library.  Mainly exists to give extra information to the
16 user.
17 */
18 class SharedLibrary: public Binary, public Library
19 {
20 public:
21         SharedLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
22         virtual const char *get_type() const { return "SharedLibrary"; }
23 };
24
25 #endif