]> git.tdb.fi Git - builder.git/blob - source/lib/objcsourcefile.h
Add visibility decorations to the library and plugins
[builder.git] / source / lib / objcsourcefile.h
1 #ifndef OBJCSOURCEFILE_H_
2 #define OBJCSOURCEFILE_H_
3
4 #include "csourcefile.h"
5 #include "libbuilder_api.h"
6
7 /**
8 Represents an Objective-C source file.
9 */
10 class LIBBUILDER_API ObjCSourceFile: public CSourceFile
11 {
12 public:
13         using CSourceFile::CSourceFile;
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