COIN-OR::LEMON - Graph Library

source: glemon-0.x/gui_writer.h @ 114:0ace7edbb06f

gui
Last change on this file since 114:0ace7edbb06f was 98:f60f89147531, checked in by Akos Ladanyi, 18 years ago

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

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