X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftextparser.h;h=2aefea91406a2dfe17b9d67835b255a26a0dade8;hb=7df5e45c7f414f6a07681dc4ec2abb63b091a309;hp=9dfcf6d2b13208df717b6cf0f9c84a573674adb8;hpb=27630d44298cb67e075c166f4421288cc8ca117e;p=libs%2Fdatafile.git diff --git a/source/textparser.h b/source/textparser.h index 9dfcf6d..2aefea9 100644 --- a/source/textparser.h +++ b/source/textparser.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspdatafile -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_DATAFILE_TEXTPARSER_H_ #define MSP_DATAFILE_TEXTPARSER_H_ @@ -19,15 +12,15 @@ class TextParser: public ParserMode { public: TextParser(Input &, const std::string &); + virtual Statement parse(); protected: Statement parse_statement(const Token *); Token parse_token(); bool is_delimiter(int); bool isodigit(int); - std::string unescape_string(const std::string &); std::string get_location(); - void parse_error(int, int); + void parse_error(int, const char *); }; } // namespace DataFile