gui/gui_reader.h
author deba
Wed, 01 Mar 2006 10:25:30 +0000
changeset 1991 d7442141d9ef
permissions -rw-r--r--
The graph adadptors can be alteration observed.
In most cases it uses the adapted graph alteration notifiers.
Only special case is now the UndirGraphAdaptor, where
we have to proxy the signals from the graph.

The SubBidirGraphAdaptor is removed, because it doest not
gives more feature than the EdgeSubGraphAdaptor<UndirGraphAdaptor<Graph>>.

The ResGraphAdaptor is based on this composition.
ladanyi@1860
     1
#ifndef GUI_READER_H
ladanyi@1860
     2
#define GUI_READER_H
ladanyi@1860
     3
ladanyi@1860
     4
#include "mapstorage.h"
ladanyi@1860
     5
#include <lemon/lemon_reader.h>
ladanyi@1860
     6
ladanyi@1860
     7
using lemon::LemonReader;
ladanyi@1860
     8
ladanyi@1860
     9
class GuiReader : public LemonReader::SectionReader
ladanyi@1860
    10
{
ladanyi@1860
    11
  private:
ladanyi@1860
    12
    MapStorage* mapstorage;
ladanyi@1860
    13
  protected:
ladanyi@1860
    14
    virtual bool header(const std::string&);
ladanyi@1860
    15
    virtual void read(std::istream&);
ladanyi@1860
    16
  public:
ladanyi@1860
    17
    typedef LemonReader::SectionReader Parent;
ladanyi@1860
    18
    GuiReader(LemonReader&, MapStorage*);
ladanyi@1860
    19
};
ladanyi@1860
    20
ladanyi@1860
    21
#endif