X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcsourcefile.h;h=dce6e19c7a478bbbe3744811800de844a71f1e87;hb=HEAD;hp=9ed736a4f770566e943cbdbf447235d37af9b067;hpb=93c0466ccf46aa3d43541a1aa6a75192d237b3eb;p=builder.git diff --git a/source/csourcefile.h b/source/csourcefile.h deleted file mode 100644 index 9ed736a..0000000 --- a/source/csourcefile.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef CSOURCEFILE_H_ -#define CSOURCEFILE_H_ - -#include "sourcefile.h" - -/** -Represents a C or C++ source file. -*/ -class CSourceFile: public SourceFile -{ -public: - typedef std::list IncludeList; - -private: - IncludeList includes; - -public: - CSourceFile(Builder &, const Msp::FS::Path &); - CSourceFile(Builder &, const Component &, const Msp::FS::Path &); - - virtual const char *get_type() const { return "CSourceFile"; } - const IncludeList &get_includes() const { return includes; } -private: - virtual void find_dependencies(); - virtual void modified(); -}; - -#endif