author | jacint |
Thu, 30 Mar 2006 15:02:11 +0000 | |
changeset 2023 | f34f044a043c |
permissions | -rw-r--r-- |
1 #ifndef GUI_WRITER_H
2 #define GUI_WRITER_H
4 #include "mapstorage.h"
5 #include <lemon/lemon_writer.h>
7 using lemon::LemonWriter;
9 class GuiWriter : public LemonWriter::SectionWriter
10 {
11 private:
12 MapStorage* mapstorage;
13 protected:
14 virtual std::string header();
15 virtual void write(std::ostream&);
16 public:
17 typedef LemonWriter::SectionWriter Parent;
18 GuiWriter(LemonWriter&, MapStorage*);
19 };
21 #endif