gui/kruskalbox.h
author hegyi
Thu, 12 Jan 2006 13:28:54 +0000
changeset 1891 56a718d144c4
parent 1878 409a31271efd
child 1896 92ef660710f1
permissions -rw-r--r--
Documentation of NoteBookTab. Redundant function parameters are removed from other classes as well.
     1 // -*- C++ -*- //
     2 
     3 #ifndef KRUSKALBOX_H
     4 #define KRUSKALBOX_H
     5 
     6 class 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 
    14 class KruskalBox : public AlgoBox
    15 {
    16   Gtk::Label resultlabel;
    17 
    18 public:
    19   KruskalBox(std::vector<std::string> t);
    20     
    21   void run();
    22     
    23   void build_box();
    24 };
    25 #endif //KRUSKALBOX_H