author | hegyi |
Wed, 11 Jan 2006 15:49:06 +0000 | |
changeset 1890 | 4a583e07d4b8 |
parent 1878 | 409a31271efd |
child 1896 | 92ef660710f1 |
permissions | -rw-r--r-- |
hegyi@1876 | 1 |
// -*- C++ -*- // |
hegyi@1876 | 2 |
|
hegyi@1876 | 3 |
#ifndef KRUSKALBOX_H |
hegyi@1876 | 4 |
#define KRUSKALBOX_H |
hegyi@1876 | 5 |
|
hegyi@1876 | 6 |
class KruskalBox; |
hegyi@1876 | 7 |
|
hegyi@1876 | 8 |
#include <all_include.h> |
hegyi@1876 | 9 |
#include <algobox.h> |
hegyi@1876 | 10 |
#include <lemon/kruskal.h> |
hegyi@1876 | 11 |
#include <libgnomecanvasmm.h> |
hegyi@1876 | 12 |
#include <libgnomecanvasmm/polygon.h> |
hegyi@1876 | 13 |
|
hegyi@1876 | 14 |
class KruskalBox : public AlgoBox |
hegyi@1876 | 15 |
{ |
hegyi@1879 | 16 |
Gtk::Label resultlabel; |
hegyi@1879 | 17 |
|
hegyi@1876 | 18 |
public: |
hegyi@1878 | 19 |
KruskalBox(std::vector<std::string> t); |
hegyi@1876 | 20 |
|
hegyi@1876 | 21 |
void run(); |
hegyi@1876 | 22 |
|
hegyi@1876 | 23 |
void build_box(); |
hegyi@1876 | 24 |
}; |
hegyi@1876 | 25 |
#endif //KRUSKALBOX_H |