10 lines
182 B
QML
10 lines
182 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
required property Singleton service
|
|
|
|
Component.onCompleted: service.refCount++
|
|
Component.onDestruction: service.refCount--
|
|
}
|