]> git.tdb.fi Git - builder.git/blobdiff - source/installcomponent.h
Inline simple constructors
[builder.git] / source / installcomponent.h
index 43dae7192972e9aaaca337d79694248c7879f505..457256d6d14be9863672e42e7268cce5ebdb9b39 100644 (file)
@@ -6,9 +6,9 @@
 class InstallComponent: public Component
 {
 public:
-       InstallComponent(SourcePackage &, const std::string &);
+       InstallComponent(SourcePackage &p, const std::string &n): Component(p, n) { }
 
-       virtual void create_targets() const;
+       void create_targets() const override;
 };
 
 #endif