]> git.tdb.fi Git - builder.git/blob - source/objcsourcefile.h
Refactor transitive dependencies to work on all targets
[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         virtual const char *get_type() const { return "ObjCSourceFile"; }
16
17 protected:
18         virtual void parse_includes(Msp::IO::Base &);
19 };
20
21 #endif