]> git.tdb.fi Git - builder.git/blob - source/templatefile.h
Refactor transitive dependencies to work on all targets
[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         virtual const char *get_type() const { return "TemplateFile"; }
15 };
16
17 #endif