- beginnings of a wingling
[supertux.git] / src / lispwriter.h
index 9443b38..0277de0 100644 (file)
@@ -1,3 +1,21 @@
+//  $Id$
+//
+//  SuperTux -  A Jump'n Run
+//  Copyright (C) 2004 Matthias Braun <matze@braunis.de
+//
+//  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 distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  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.
 #ifndef __LISPWRITER_H__
 #define __LISPWRITER_H__
 
@@ -10,19 +28,19 @@ public:
   LispWriter(std::ostream& out);
   ~LispWriter();
 
-  void writeComment(const std::string& comment);
+  void write_comment(const std::string& comment);
   
-  void startList(const std::string& listname);
+  void start_list(const std::string& listname);
 
-  void writeInt(const std::string& name, int value);
-  void writeFloat(const std::string& name, float value);
-  void writeString(const std::string& name, const std::string& value);
-  void writeBool(const std::string& name, bool value);
-  void writeIntVector(const std::string& name, const std::vector<int>& value);
-  void writeIntVector(const std::string& name, const std::vector<unsigned int>& value);
+  void write_int(const std::string& name, int value);
+  void write_float(const std::string& name, float value);
+  void write_string(const std::string& name, const std::string& value);
+  void write_bool(const std::string& name, bool value);
+  void write_int_vector(const std::string& name, const std::vector<int>& value);
+  void write_int_vector(const std::string& name, const std::vector<unsigned int>& value);
   // add more write-functions when needed...
   
-  void endList(const std::string& listname);
+  void end_list(const std::string& listname);
 
 private:
   void indent();