GraphTool  1.0
Tool for analyzing and graphically visualizing code dependencies for Ericsson.
 All Classes Namespaces Functions Variables Typedefs Enumerations Pages
bubble_tree_layout.h
1 #ifndef BUBBLE_TREE_LAYOUT_H_
2 #define BUBBLE_TREE_LAYOUT_H_
3 
4 #include <vector>
5 #include <utility> // pair
6 
7 #include "AdjacencyList.h"
8 
9 namespace Layout {
10 
17  std::vector<std::pair<int, int> >* bubble_tree_layout(AdjacencyList& g);
18 
26  std::vector<std::pair<int, int> >* bubble_tree_layout(AdjacencyList& g,
27  unsigned int start);
28 }
29 
30 #endif
Definition: AdjacencyList.h:9