| 109 | } |
| 110 | |
| 111 | qan::Edge* CustomGraph::insertCustomEdge(qan::Node* source, qan::Node* destination) |
| 112 | { |
| 113 | const auto engine = qmlEngine(this); |
| 114 | if ( source != nullptr && destination != nullptr && engine != nullptr ) |
| 115 | return qan::Graph::insertEdge<CustomEdge>(*source, destination, CustomEdge::delegate(*engine) ); |
| 116 | return nullptr; |
| 117 | } |
nothing calls this directly
no outgoing calls
no test coverage detected