]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/textparser.h
Restructure control statement processing
[libs/datafile.git] / source / textparser.h
index 9dfcf6d2b13208df717b6cf0f9c84a573674adb8..e8c89227ddc7300b7e745faca33a3f08c0089b8b 100644 (file)
@@ -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_
 
@@ -13,21 +6,19 @@ Distributed under the LGPL
 namespace Msp {
 namespace DataFile {
 
-class Token;
+struct Token;
 
 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);
+       bool is_delimiter(int);
+       bool isodigit(int);
 };
 
 } // namespace DataFile