kruskalbox.h
branchgui
changeset 106 853dd852abc7
child 108 bf355fd6563e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/kruskalbox.h	Wed Jan 04 18:05:55 2006 +0000
     1.3 @@ -0,0 +1,23 @@
     1.4 +// -*- C++ -*- //
     1.5 +
     1.6 +#ifndef KRUSKALBOX_H
     1.7 +#define KRUSKALBOX_H
     1.8 +
     1.9 +class KruskalBox;
    1.10 +
    1.11 +#include <all_include.h>
    1.12 +#include <algobox.h>
    1.13 +#include <lemon/kruskal.h>
    1.14 +#include <libgnomecanvasmm.h>
    1.15 +#include <libgnomecanvasmm/polygon.h>
    1.16 +
    1.17 +class KruskalBox : public AlgoBox
    1.18 +{
    1.19 +public:
    1.20 +  KruskalBox(std::vector<std::string> t, std::vector<std::string> nm, std::vector<std::string> em);
    1.21 +    
    1.22 +  void run();
    1.23 +    
    1.24 +  void build_box();
    1.25 +};
    1.26 +#endif //KRUSKALBOX_H