COIN-OR::LEMON - Graph Library

source: lemon-0.x/gui/gui_reader.h @ 1878:409a31271efd

Last change on this file since 1878:409a31271efd was 1860:27a9a75b957b, checked in by Akos Ladanyi, 18 years ago

Save and load the coordinates of the arrows on the edges.

File size: 426 bytes
Line 
1#ifndef GUI_READER_H
2#define GUI_READER_H
3
4#include "mapstorage.h"
5#include <lemon/lemon_reader.h>
6
7using lemon::LemonReader;
8
9class 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
Note: See TracBrowser for help on using the repository browser.