mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
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--
|
|
}
|