]> git.tdb.fi Git - builder.git/blobdiff - source/datasourcefile.h
Inline simple constructors
[builder.git] / source / datasourcefile.h
index 64093b5d31a405a620394d1d1fcfd45ffced8bcd..7518423f5e6ca2769b6e8eece89b9851aa118f0d 100644 (file)
@@ -6,8 +6,8 @@
 class DataSourceFile: public SourceFile
 {
 public:
-       DataSourceFile(Builder &, const Msp::FS::Path &);
-       DataSourceFile(Builder &, const Component &, const Msp::FS::Path &);
+       DataSourceFile(Builder &b, const Msp::FS::Path &p): SourceFile(b, p) { }
+       DataSourceFile(Builder &b, const Component &c, const Msp::FS::Path &p): SourceFile(b, c, p) { }
 
        const char *get_type() const override { return "DataSourceFile"; }
 };