]> git.tdb.fi Git - builder.git/blob - source/installcomponent.h
Inline simple constructors
[builder.git] / source / 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