hegyi@1: /* -*- C++ -*- hegyi@1: * hegyi@1: * This file is a part of LEMON, a generic C++ optimization library hegyi@1: * hegyi@1: * Copyright (C) 2003-2006 hegyi@1: * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport hegyi@1: * (Egervary Research Group on Combinatorial Optimization, EGRES). hegyi@1: * hegyi@1: * Permission to use, modify and distribute this software is granted hegyi@1: * provided that this copyright notice appears in all copies. For hegyi@1: * precise terms see the accompanying LICENSE file. hegyi@1: * hegyi@1: * This software is provided "AS IS" with no warranty of any kind, hegyi@1: * express or implied, and with no claim as to its suitability for any hegyi@1: * purpose. hegyi@1: * hegyi@1: */ hegyi@1: hegyi@1: #ifndef GUI_WRITER_H hegyi@1: #define GUI_WRITER_H hegyi@1: hegyi@1: #include hegyi@1: hegyi@1: class MapStorage; hegyi@1: hegyi@1: class GuiWriter hegyi@1: { hegyi@1: private: hegyi@1: MapStorage* mapstorage; hegyi@1: public: hegyi@1: virtual void write(std::ostream&); hegyi@1: GuiWriter(MapStorage*); hegyi@1: }; hegyi@1: hegyi@1: #endif