9 lines
158 B
QML
9 lines
158 B
QML
import QtQuick
|
|
|
|
QtObject {
|
|
required property var service
|
|
|
|
Component.onCompleted: service.refCount++
|
|
Component.onDestruction: service.refCount--
|
|
}
|