MCPcopy Create free account
hub / github.com/cneben/QuickQanava / CustomEdge

Class CustomEdge

samples/cpp/cpp_sample.h:76–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74QML_DECLARE_TYPE(CustomNode)
75
76class CustomEdge : public qan::Edge {
77 Q_OBJECT
78public:
79 explicit CustomEdge(QObject* parent = nullptr) : qan::Edge{parent} {}
80 virtual ~CustomEdge() override = default;
81private:
82 CustomEdge(const CustomEdge &) = delete;
83
84public:
85 static QQmlComponent* delegate(QQmlEngine &engine, QObject* parent = nullptr) noexcept;
86 static qan::EdgeStyle* style(QObject* parent = nullptr) noexcept;
87};
88
89QML_DECLARE_TYPE(CustomEdge)
90

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected