X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fparser.h;h=6ad28b5b13c7a3824e3f05422834792cf758bccd;hb=74f25b32f313987aad22af901b75a8e59a90734a;hp=a89799bd0558cf54c6fbb2e547e406afd9b132a4;hpb=7df5e45c7f414f6a07681dc4ec2abb63b091a309;p=libs%2Fdatafile.git diff --git a/source/parser.h b/source/parser.h index a89799b..6ad28b5 100644 --- a/source/parser.h +++ b/source/parser.h @@ -9,7 +9,6 @@ namespace DataFile { class ParserMode; class Statement; -struct Token; /** Frontend for loading datafiles. Handles switching between text and binary @@ -19,11 +18,11 @@ statements may be read. class Parser { private: - Input in; + Input in; std::string main_src; std::string src; - bool good; - ParserMode *mode; + bool good; + ParserMode *mode; public: Parser(IO::Base &i, const std::string &s); @@ -35,7 +34,7 @@ public: marked as bad and no more statements may be read, even if the exception was caught. */ - Statement parse(); + Statement parse(bool raw = false); operator bool() const { return good && in; } };