]> git.tdb.fi Git - builder.git/blob - source/lib/templatefile.h
Add visibility decorations to the library and plugins
[builder.git] / source / lib / templatefile.h
1 #ifndef TEMPLATEFILE_H_
2 #define TEMPLATEFILE_H_
3
4 #include "libbuilder_api.h"
5 #include "sourcefile.h"
6
7 /**
8 Input file for SourceGenerator.
9 */
10 class LIBBUILDER_API TemplateFile: public SourceFile
11 {
12 public:
13         TemplateFile(Builder &b, const Component &c, const Msp::FS::Path &p): SourceFile(b, c, p) { }
14
15         const char *get_type() const override { return "TemplateFile"; }
16 };
17
18 #endif