Graph Factories */ --------------------------------------------------------
| 616 | |
| 617 | /* Graph Factories *///-------------------------------------------------------- |
| 618 | auto Graph::insertNonVisualNode(Node* node) -> bool |
| 619 | { |
| 620 | if (node == nullptr) { |
| 621 | qWarning() << "Graph::insertNonVisualNode(): Error: node is nullptr."; |
| 622 | return false; |
| 623 | } |
| 624 | if (super_t::insert_node(node)) { |
| 625 | onNodeInserted(*node); |
| 626 | emit nodeInserted(node); |
| 627 | return true; |
| 628 | } |
| 629 | return false; |
| 630 | } |
| 631 | |
| 632 | qan::Node* Graph::insertNode(QQmlComponent* nodeComponent, qan::NodeStyle* nodeStyle) |
| 633 | { |
nothing calls this directly
no outgoing calls
no test coverage detected