X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fobjcsourcefile.h;h=37f79a3f1f1b9d852857859ef900bb92cd5f185f;hb=451ef4f33b5a57dcb56bd7cb671bed359ac86247;hp=2069615b5c921ee821dcdfe9d08baa97e29ae0ed;hpb=7bcd4fef81679dedcabc5a58b12511a6b52c4fe4;p=builder.git diff --git a/source/objcsourcefile.h b/source/objcsourcefile.h index 2069615..37f79a3 100644 --- a/source/objcsourcefile.h +++ b/source/objcsourcefile.h @@ -9,13 +9,12 @@ Represents an Objective-C source file. class ObjCSourceFile: public CSourceFile { public: - ObjCSourceFile(Builder &, const Msp::FS::Path &); - ObjCSourceFile(Builder &, const Component &, const Msp::FS::Path &); + using CSourceFile::CSourceFile; - virtual const char *get_type() const { return "ObjCSourceFile"; } + const char *get_type() const override { return "ObjCSourceFile"; } protected: - virtual void parse_includes(Msp::IO::Base &); + void parse_includes(Msp::IO::Base &) override; }; #endif