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