]> git.tdb.fi Git - builder.git/blob - source/templatefile.h
Inline simple constructors
[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 &b, const Component &c, const Msp::FS::Path &p): SourceFile(b, c, p) { }
13
14         const char *get_type() const override { return "TemplateFile"; }
15 };
16
17 #endif