X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flisp%2Fparser.hpp;h=cbc89afd5eac30c677406cf4cfa12551f5cf7ced;hb=7bb247564b8236e60384827137e57f328f9614f5;hp=d4a986e48a9bb2042a73fb5ea753c6729315c16a;hpb=fea3446f05e1e7673607b835c269d3e8d1929ab3;p=supertux.git diff --git a/src/lisp/parser.hpp b/src/lisp/parser.hpp index d4a986e48..cbc89afd5 100644 --- a/src/lisp/parser.hpp +++ b/src/lisp/parser.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,14 +12,12 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// along with this program. If not, see . -#ifndef __LISPPARSER_H__ -#define __LISPPARSER_H__ +#ifndef HEADER_SUPERTUX_LISP_PARSER_HPP +#define HEADER_SUPERTUX_LISP_PARSER_HPP -#include -#include "lexer.hpp" +#include "lisp/lexer.hpp" #include "obstack/obstack.h" namespace TinyGetText { @@ -29,8 +25,7 @@ class Dictionary; class DictionaryManager; } -namespace lisp -{ +namespace lisp { class Lisp; class LispFile; @@ -54,9 +49,11 @@ public: const Lisp* parse(std::istream& stream, const std::string& sourcename); private: - void parse_error(const char* msg) const; + void parse_error(const char* msg) const __attribute__((__noreturn__)); const Lisp* read(); + +private: Lexer* lexer; std::string filename; TinyGetText::DictionaryManager* dictionary_manager; @@ -64,8 +61,14 @@ private: Lexer::TokenType token; struct obstack obst; + +private: + Parser(const Parser&); + Parser & operator=(const Parser&); }; } // end of namespace lisp #endif + +/* EOF */