]> git.tdb.fi Git - builder.git/blob - source/lib/installcomponent.h
Add visibility decorations to the library and plugins
[builder.git] / source / lib / installcomponent.h
1 #ifndef INSTALLCOMPONENT_H_
2 #define INSTALLCOMPONENT_H_
3
4 #include "component.h"
5 #include "libbuilder_api.h"
6
7 class LIBBUILDER_API InstallComponent: public Component
8 {
9 public:
10         InstallComponent(SourcePackage &p, const std::string &n): Component(p, n) { }
11
12         void create_targets() const override;
13 };
14
15 #endif