]> git.tdb.fi Git - builder.git/blob - source/lib/sourcefile.h
Add visibility decorations to the library and plugins
[builder.git] / source / lib / sourcefile.h
1 #ifndef SOURCEFILE_H_
2 #define SOURCEFILE_H_
3
4 #include "filetarget.h"
5 #include "libbuilder_api.h"
6
7 class LIBBUILDER_API SourceFile: public FileTarget
8 {
9 protected:
10         SourceFile(Builder &b, const Msp::FS::Path &p): FileTarget(b, p) { }
11         SourceFile(Builder &, const Component &, const Msp::FS::Path &);
12 };
13
14 #endif