]> git.tdb.fi Git - builder.git/blob - source/sourcefile.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / sourcefile.h
1 #ifndef SOURCEFILE_H_
2 #define SOURCEFILE_H_
3
4 #include "filetarget.h"
5
6 class SourceFile: public FileTarget
7 {
8 protected:
9         SourceFile(Builder &, const Msp::FS::Path &);
10         SourceFile(Builder &, const Component &, const Msp::FS::Path &);
11 };
12
13 #endif