diff -r 23f0afd1a323 -r f60f89147531 gui_writer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gui_writer.h Sat Dec 17 20:55:41 2005 +0000 @@ -0,0 +1,21 @@ +#ifndef GUI_WRITER_H +#define GUI_WRITER_H + +#include "mapstorage.h" +#include + +using lemon::LemonWriter; + +class GuiWriter : public LemonWriter::SectionWriter +{ + private: + MapStorage* mapstorage; + protected: + virtual std::string header(); + virtual void write(std::ostream&); + public: + typedef LemonWriter::SectionWriter Parent; + GuiWriter(LemonWriter&, MapStorage*); +}; + +#endif