added jam build system, please try it out - the advantage would be that it already...
[supertux.git] / lib / utils / configfile.h
index a6471cc..17d1af2 100644 (file)
 
 namespace SuperTux {
 
-FILE * opendata(const char * filename, const char * mode);
+FILE * opendata(const std::string& filename, const char * mode);
 
 class Config {
   public:
   void load ();
   void save ();
-  virtual void customload(LispReader& reader) {};
-  virtual void customsave(FILE * config) {};
+  virtual void customload(LispReader& )
+  {};
+  virtual void customsave(FILE* )
+  {};
 };
 
 extern Config* config;