Files
z-bar-qt/Components/Ref.qml
Zacharias-Brohn 53fe85c455 dashboard
2026-02-14 00:14:18 +01:00

9 lines
158 B
QML

import QtQuick
QtObject {
required property var service
Component.onCompleted: service.refCount++
Component.onDestruction: service.refCount--
}