]> git.tdb.fi Git - builder.git/blob - source/objcsourcefile.h
fda3d293ed8079d452eb6452ffd7a029449d5c14
[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         ObjCSourceFile(Builder &, const Msp::FS::Path &);
13         ObjCSourceFile(Builder &, const Component &, const Msp::FS::Path &);
14
15         const char *get_type() const override { return "ObjCSourceFile"; }
16
17 protected:
18         void parse_includes(Msp::IO::Base &) override;
19 };
20
21 #endif