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