kruskalbox.h
author hegyi
Thu, 05 Jan 2006 12:30:09 +0000
branchgui
changeset 108 bf355fd6563e
parent 106 853dd852abc7
child 109 9f8dc346ac6e
permissions -rw-r--r--
Several changes. \n If new map is added to mapstorage it emits signal with the name of the new map. This was important, because from now on not only tha mapwin should be updated. \n Furthermore algobox gets a pointer to mapstorage instead of only the mapnames from it. This is important because without it it would be complicated to pass all of the required maps to algobox.
hegyi@106
     1
// -*- C++ -*- //
hegyi@106
     2
hegyi@106
     3
#ifndef KRUSKALBOX_H
hegyi@106
     4
#define KRUSKALBOX_H
hegyi@106
     5
hegyi@106
     6
class KruskalBox;
hegyi@106
     7
hegyi@106
     8
#include <all_include.h>
hegyi@106
     9
#include <algobox.h>
hegyi@106
    10
#include <lemon/kruskal.h>
hegyi@106
    11
#include <libgnomecanvasmm.h>
hegyi@106
    12
#include <libgnomecanvasmm/polygon.h>
hegyi@106
    13
hegyi@106
    14
class KruskalBox : public AlgoBox
hegyi@106
    15
{
hegyi@106
    16
public:
hegyi@108
    17
  KruskalBox(std::vector<std::string> t);
hegyi@106
    18
    
hegyi@106
    19
  void run();
hegyi@106
    20
    
hegyi@106
    21
  void build_box();
hegyi@106
    22
};
hegyi@106
    23
#endif //KRUSKALBOX_H