X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdatasourcefile.h;h=7518423f5e6ca2769b6e8eece89b9851aa118f0d;hb=40ab4f61eaf7fc14fc6d1c2ea5eecee21882893a;hp=23c254366b34ee116760585e1794298c5b99cf47;hpb=a17effb99d06b534bd3ed8e2723dc7da389bf8fc;p=builder.git diff --git a/source/datasourcefile.h b/source/datasourcefile.h index 23c2543..7518423 100644 --- a/source/datasourcefile.h +++ b/source/datasourcefile.h @@ -6,10 +6,10 @@ 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) { } - virtual const char *get_type() const { return "DataSourceFile"; } + const char *get_type() const override { return "DataSourceFile"; } }; #endif