author | deba |
Mon, 06 Mar 2006 10:28:37 +0000 | |
changeset 1999 | 2ff283124dfc |
permissions | -rw-r--r-- |
1 #ifndef GUI_READER_H
2 #define GUI_READER_H
4 #include "mapstorage.h"
5 #include <lemon/lemon_reader.h>
7 using lemon::LemonReader;
9 class GuiReader : public LemonReader::SectionReader
10 {
11 private:
12 MapStorage* mapstorage;
13 protected:
14 virtual bool header(const std::string&);
15 virtual void read(std::istream&);
16 public:
17 typedef LemonReader::SectionReader Parent;
18 GuiReader(LemonReader&, MapStorage*);
19 };
21 #endif