Updated addon repository URL and improved debug output on download
[supertux.git] / src / lisp / parser.hpp
index cbc89af..47c4fcd 100644 (file)
 #ifndef HEADER_SUPERTUX_LISP_PARSER_HPP
 #define HEADER_SUPERTUX_LISP_PARSER_HPP
 
+#include <obstack.h>
+
 #include "lisp/lexer.hpp"
-#include "obstack/obstack.h"
 
-namespace TinyGetText {
+namespace tinygettext {
 class Dictionary;
 class DictionaryManager;
 }
@@ -56,9 +57,10 @@ private:
 private:
   Lexer* lexer;
   std::string filename;
-  TinyGetText::DictionaryManager* dictionary_manager;
-  TinyGetText::Dictionary* dictionary;
+  tinygettext::DictionaryManager* dictionary_manager;
+  tinygettext::Dictionary* dictionary;
   Lexer::TokenType token;
+  char** searchpath;
 
   struct obstack obst;