| 56 | } |
| 57 | |
| 58 | void SessionsGraph::LinkToRoot(GraphItem *item) const |
| 59 | { |
| 60 | item->parentLink = new GraphItemLink(this->rootItem, item, ""); |
| 61 | item->parentItem = this->rootItem; |
| 62 | this->rootItem->AddChild( item ); |
| 63 | } |
| 64 | |
| 65 | void SessionsGraph::AddAgent(Agent *agent, bool drawTree) |
| 66 | { |
no test coverage detected