]> git.tdb.fi Git - builder.git/blob - source/sourcefile.h
962c575558f8eb04bb79503d946391a302def8f6
[builder.git] / source / sourcefile.h
1 #ifndef SOURCEFILE_H_
2 #define SOURCEFILE_H_
3
4 #include "target.h"
5
6 class Component;
7
8 class SourceFile: public Target
9 {
10 public:
11         SourceFile(Builder &, const Component *, const std::string &);
12         void find_depends();
13         const char *get_type() const { return "SourceFile"; }
14 private:
15         const Component *comp;
16         std::list<std::string> includes;
17 };
18
19 #endif