COIN-OR::LEMON - Graph Library

source: glemon-0.x/kruskalbox.h @ 108:bf355fd6563e

gui
Last change on this file since 108:bf355fd6563e was 108:bf355fd6563e, checked in by Hegyi Péter, 18 years ago

Several changes. \n If new map is added to mapstorage it emits signal with the name of the new map. This was important, because from now on not only tha mapwin should be updated. \n Furthermore algobox gets a pointer to mapstorage instead of only the mapnames from it. This is important because without it it would be complicated to pass all of the required maps to algobox.

File size: 378 bytes
Line 
1// -*- C++ -*- //
2
3#ifndef KRUSKALBOX_H
4#define KRUSKALBOX_H
5
6class KruskalBox;
7
8#include <all_include.h>
9#include <algobox.h>
10#include <lemon/kruskal.h>
11#include <libgnomecanvasmm.h>
12#include <libgnomecanvasmm/polygon.h>
13
14class KruskalBox : public AlgoBox
15{
16public:
17  KruskalBox(std::vector<std::string> t);
18   
19  void run();
20   
21  void build_box();
22};
23#endif //KRUSKALBOX_H
Note: See TracBrowser for help on using the repository browser.