COIN-OR::LEMON - Graph Library

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

gui
Last change on this file since 114:0ace7edbb06f was 109:9f8dc346ac6e, checked in by Hegyi Péter, 18 years ago

Kruskal algorithm can be run from GUI from now on.

File size: 405 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{
16  Gtk::Label resultlabel;
17
18public:
19  KruskalBox(std::vector<std::string> t);
20   
21  void run();
22   
23  void build_box();
24};
25#endif //KRUSKALBOX_H
Note: See TracBrowser for help on using the repository browser.