]> git.tdb.fi Git - builder.git/blob - source/datasourcefile.h
Inline simple constructors
[builder.git] / source / datasourcefile.h
1 #ifndef DATASOURCEFILE_H_
2 #define DATASOURCEFILE_H_
3
4 #include "sourcefile.h"
5
6 class DataSourceFile: public SourceFile
7 {
8 public:
9         DataSourceFile(Builder &b, const Msp::FS::Path &p): SourceFile(b, p) { }
10         DataSourceFile(Builder &b, const Component &c, const Msp::FS::Path &p): SourceFile(b, c, p) { }
11
12         const char *get_type() const override { return "DataSourceFile"; }
13 };
14
15 #endif