summaryrefslogtreecommitdiff
path: root/components/misc/Ref.qml
blob: 0a694a472d54939142a17c6be34a010605312e70 (plain)
1
2
3
4
5
6
7
8
import QtQuick

QtObject {
    required property var service

    Component.onCompleted: service.refCount++
    Component.onDestruction: service.refCount--
}