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