14 lines
256 B
QML
14 lines
256 B
QML
|
import QtQml 2.15
|
||
|
|
||
|
QtObject {
|
||
|
id: root
|
||
|
|
||
|
function toggleCentralizedMetrics(enabled) {
|
||
|
metrics.toggleCentralizedMetrics(enabled)
|
||
|
}
|
||
|
|
||
|
function isCentralizedMetricsEnabled() {
|
||
|
return metrics.isCentralizedMetricsEnabled()
|
||
|
}
|
||
|
}
|