| 45 | using namespace qan; |
| 46 | |
| 47 | QQmlComponent* CustomGroup::delegate(QQmlEngine &engine, QObject* parent) noexcept { |
| 48 | Q_UNUSED(parent) |
| 49 | static std::unique_ptr<QQmlComponent> delegate; |
| 50 | if (!delegate) |
| 51 | delegate = std::make_unique<QQmlComponent>(&engine, "qrc:/CustomGroup.qml"); |
| 52 | return delegate.get(); |
| 53 | } |
| 54 | |
| 55 | qan::NodeStyle* CustomGroup::style(QObject* parent) noexcept { |
| 56 | Q_UNUSED(parent) |
nothing calls this directly
no outgoing calls
no test coverage detected