X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fconfig.cpp;h=0e8e6c2c742c29ea52ee887aed7b04f5472b0427;hb=654de39b62a9a58fd8e1b5a557361d628345788b;hp=854c7e817d39f58876132a9bd5a482cafd64c3d5;hpb=7aeaa4ba965f596edad438c02e345a8843f7469a;p=builder.git diff --git a/source/config.cpp b/source/config.cpp index 854c7e8..0e8e6c2 100644 --- a/source/config.cpp +++ b/source/config.cpp @@ -11,12 +11,12 @@ Distributed under the LGPL #include #include "builder.h" #include "config.h" -#include "package.h" +#include "sourcepackage.h" using namespace std; using namespace Msp; -Config::Config(Package &p): +Config::Config(SourcePackage &p): package(p), freeze_mtime(false) { } @@ -214,7 +214,7 @@ void Config::load() Path::stat(fn, st); mtime=Time::TimeStamp::from_unixtime(st.st_mtime); - Parser::Parser parser(in, fn.str()); + DataFile::Parser parser(in, fn.str()); Loader loader(*this); loader.load(parser); }