X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcsourcefile.h;h=dce6e19c7a478bbbe3744811800de844a71f1e87;hb=e4c839cacd8572ade951f4961e8e145d20e0103f;hp=9ed736a4f770566e943cbdbf447235d37af9b067;hpb=93c0466ccf46aa3d43541a1aa6a75192d237b3eb;p=builder.git diff --git a/source/csourcefile.h b/source/csourcefile.h index 9ed736a..dce6e19 100644 --- a/source/csourcefile.h +++ b/source/csourcefile.h @@ -1,6 +1,7 @@ #ifndef CSOURCEFILE_H_ #define CSOURCEFILE_H_ +#include #include "sourcefile.h" /** @@ -11,7 +12,7 @@ class CSourceFile: public SourceFile public: typedef std::list IncludeList; -private: +protected: IncludeList includes; public: @@ -20,7 +21,8 @@ public: virtual const char *get_type() const { return "CSourceFile"; } const IncludeList &get_includes() const { return includes; } -private: +protected: + virtual void parse_includes(Msp::IO::Base &); virtual void find_dependencies(); virtual void modified(); };