kruskalbox.h
branchgui
changeset 106 853dd852abc7
child 108 bf355fd6563e
equal deleted inserted replaced
-1:000000000000 0:f250e98c6965
       
     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 public:
       
    17   KruskalBox(std::vector<std::string> t, std::vector<std::string> nm, std::vector<std::string> em);
       
    18     
       
    19   void run();
       
    20     
       
    21   void build_box();
       
    22 };
       
    23 #endif //KRUSKALBOX_H