GraphTool  1.0
Tool for analyzing and graphically visualizing code dependencies for Ericsson.
 All Classes Namespaces Functions Variables Typedefs Enumerations Pages
tree_layout.h
1 #ifndef TREE_LAYOUT_H_
2 #define TREE_LAYOUT_H_
3 
4 namespace Layout {
10  std::vector<std::pair<int, int> >* tree_layout(AdjacencyList& g);
11 
19  std::vector<std::pair<int, int> >* tree_layout(AdjacencyList& g,
20  unsigned int start);
21 }
22 
23 #endif
Definition: AdjacencyList.h:9