]> git.tdb.fi Git - builder.git/blob - source/objcsourcefile.h
Inline simple constructors
[builder.git] / source / objcsourcefile.h
1 #ifndef OBJCSOURCEFILE_H_
2 #define OBJCSOURCEFILE_H_
3
4 #include "csourcefile.h"
5
6 /**
7 Represents an Objective-C source file.
8 */
9 class ObjCSourceFile: public CSourceFile
10 {
11 public:
12         using CSourceFile::CSourceFile;
13
14         const char *get_type() const override { return "ObjCSourceFile"; }
15
16 protected:
17         void parse_includes(Msp::IO::Base &) override;
18 };
19
20 #endif