gui/gui_writer.h
author deba
Tue, 07 Feb 2006 09:32:55 +0000
changeset 1966 65765fb5eb2f
permissions -rw-r--r--
Easier checking in DEBUG mode

I hope we should not test ArrayMap longer

The vector map checks its limits in debug mode what
helps us to find the bad memory accesses in the maps
     1 #ifndef GUI_WRITER_H
     2 #define GUI_WRITER_H
     3 
     4 #include "mapstorage.h"
     5 #include <lemon/lemon_writer.h>
     6 
     7 using lemon::LemonWriter;
     8 
     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 };
    20 
    21 #endif