]> git.tdb.fi Git - builder.git/blob - source/sharedlibrary.h
96a38fae0523192d14215af5c4580f6098ba407f
[builder.git] / source / sharedlibrary.h
1 #ifndef SHAREDLIB_H_
2 #define SHAREDLIB_H_
3
4 #include "executable.h"
5
6 class SharedLibrary: public Executable
7 {
8 public:
9         SharedLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
10         const char *get_type() const { return "SharedLibrary"; }
11 };
12
13 #endif