X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fparser.h;h=32a776082de1896e20fbe5aa001a78669e33ea66;hb=refs%2Fheads%2Fwip;hp=1437190b606b89640afabd4619a62c4fe21f65c8;hpb=13a151ed60b57cc1e058edf081a63edfa7aa7a77;p=libs%2Fdatafile.git diff --git a/source/parser.h b/source/parser.h index 1437190..32a7760 100644 --- a/source/parser.h +++ b/source/parser.h @@ -2,7 +2,9 @@ #define MSP_DATAFILE_PARSER_H_ #include +#include #include "input.h" +#include "mspdatafile_api.h" namespace Msp { namespace DataFile { @@ -10,7 +12,7 @@ namespace DataFile { class Loader; class LoaderAction; class ParserMode; -class Statement; +struct Statement; struct StatementKey; /** @@ -18,14 +20,14 @@ Frontend for loading datafiles. Handles switching between text and binary formats. A Parser evaluates into a boolean value indicating whether more statements may be read. */ -class Parser +class MSPDATAFILE_API Parser: private NonCopyable { private: Input in; std::string main_src; std::string src; - bool good; - ParserMode *mode; + bool good = true; + ParserMode *mode = nullptr; public: Parser(IO::Base &i, const std::string &s); @@ -50,7 +52,7 @@ public: statement's signature. */ bool parse_and_load(unsigned, Loader &, const LoaderAction &); - operator bool() const { return good && in; } + explicit operator bool() const { return good && in; } }; } // namespace DataFile