gui/gui_reader.h
changeset 1860 27a9a75b957b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gui/gui_reader.h	Sat Dec 17 20:55:41 2005 +0000
     1.3 @@ -0,0 +1,21 @@
     1.4 +#ifndef GUI_READER_H
     1.5 +#define GUI_READER_H
     1.6 +
     1.7 +#include "mapstorage.h"
     1.8 +#include <lemon/lemon_reader.h>
     1.9 +
    1.10 +using lemon::LemonReader;
    1.11 +
    1.12 +class GuiReader : public LemonReader::SectionReader
    1.13 +{
    1.14 +  private:
    1.15 +    MapStorage* mapstorage;
    1.16 +  protected:
    1.17 +    virtual bool header(const std::string&);
    1.18 +    virtual void read(std::istream&);
    1.19 +  public:
    1.20 +    typedef LemonReader::SectionReader Parent;
    1.21 +    GuiReader(LemonReader&, MapStorage*);
    1.22 +};
    1.23 +
    1.24 +#endif