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.
4 #include "mapstorage.h"
5 #include <lemon/lemon_reader.h>
7 using lemon::LemonReader;
9 class GuiReader : public LemonReader::SectionReader
12 MapStorage* mapstorage;
14 virtual bool header(const std::string&);
15 virtual void read(std::istream&);
17 typedef LemonReader::SectionReader Parent;
18 GuiReader(LemonReader&, MapStorage*);