gui/gui_reader.h
author klao
Fri, 03 Feb 2006 14:07:52 +0000
changeset 1951 cb7a6e0573bc
permissions -rw-r--r--
graph_adaptor.h: probably a doxygen bug: in tex formulas there should be
whitespace after the opening and before the closing \f$
     1 #ifndef GUI_READER_H
     2 #define GUI_READER_H
     3 
     4 #include "mapstorage.h"
     5 #include <lemon/lemon_reader.h>
     6 
     7 using lemon::LemonReader;
     8 
     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 };
    20 
    21 #endif