X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flib%2Ftemplatefile.h;fp=source%2Flib%2Ftemplatefile.h;h=091202590e65effa6d257a56f06a24a0baf7a74b;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/source/lib/templatefile.h b/source/lib/templatefile.h new file mode 100644 index 0000000..0912025 --- /dev/null +++ b/source/lib/templatefile.h @@ -0,0 +1,17 @@ +#ifndef TEMPLATEFILE_H_ +#define TEMPLATEFILE_H_ + +#include "sourcefile.h" + +/** +Input file for SourceGenerator. +*/ +class TemplateFile: public SourceFile +{ +public: + TemplateFile(Builder &b, const Component &c, const Msp::FS::Path &p): SourceFile(b, c, p) { } + + const char *get_type() const override { return "TemplateFile"; } +}; + +#endif