| 53 | } |
| 54 | |
| 55 | qan::NodeStyle* CustomGroup::style(QObject* parent) noexcept { |
| 56 | Q_UNUSED(parent) |
| 57 | static std::unique_ptr<qan::NodeStyle> style; |
| 58 | if (!style) { |
| 59 | style = std::make_unique<qan::NodeStyle>(); |
| 60 | } |
| 61 | return style.get(); |
| 62 | } |
| 63 | |
| 64 | QQmlComponent* CustomNode::delegate(QQmlEngine &engine, QObject* parent) noexcept |
| 65 | { |
nothing calls this directly
no test coverage detected