* @brief Appends new node to array. * @param node Node to be added. */
| 31 | * @param node Node to be added. |
| 32 | */ |
| 33 | void NodeArray::addNode(std::shared_ptr<Node> node) |
| 34 | { |
| 35 | _nodes.push_back(node); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * @return true if size of nodes is 0, false otherwise. |
no outgoing calls
no test coverage detected