X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Floader.h;h=a7d2dbdfbc9eb70f191e9e9c979f355a55174315;hp=749c1047cd1a762084adb91d37956671fe8d6745;hb=6dd94a7fe90c6467024685fbac769067ddb74688;hpb=55592b9eeaff3d41e5f03b9c0c1566ed508f38a5 diff --git a/source/loader.h b/source/loader.h index 749c104..a7d2dbd 100644 --- a/source/loader.h +++ b/source/loader.h @@ -8,8 +8,9 @@ Distributed under the LGPL #ifndef MSP_DATAFILE_LOADER_H_ #define MSP_DATAFILE_LOADER_H_ -#include #include +#include +#include #include "except.h" #include "parser.h" #include "statement.h" @@ -361,11 +362,10 @@ Loads an object from a file. The object must have a public Loader class. template void load(T &obj, const std::string &fn) { - std::ifstream in(fn.c_str()); - if(!in) - throw Exception("Couldn't open "+fn); + IO::File in(fn); + IO::Buffered buf(in); - Parser parser(in, fn); + Parser parser(buf, fn); typename T::Loader loader(obj); loader.load(parser); } @@ -373,9 +373,8 @@ void load(T &obj, const std::string &fn) template void load(T &obj, const std::string &fn, U arg) { - std::ifstream in(fn.c_str()); - if(!in) - throw Exception("Couldn't open "+fn); + IO::File in(fn); + IO::Buffered buf(in); Parser parser(in, fn); typename T::Loader loader(obj, arg);