4 #include "sourcefile.h"
7 Represents a header file. Mainly exists to give extra information to the user.
9 class Header: public SourceFile
12 Header(Builder &b, const std::string &f): SourceFile(b, f) { }
14 Header(Builder &b, const Component &c, const std::string &f): SourceFile(b, c, f) { }
15 virtual const char *get_type() const { return "Header"; }
19 A header file that doesn't belong to any known package.
21 class SystemHeader: public Header
24 SystemHeader(Builder &b, const std::string &f): Header(b, f) { }
25 virtual const char *get_type() const { return "SystemHeader"; }