C

Qt Quick Ultralite Automotive Cluster Demo

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial

import QtQuick 2.15

QtObject {
    enum Limit {
        None = 0,
        VerySlow = 20,
        Slow = 35,
        Medium = 45,
        Fast = 55,
        VeryFast = 85,
        LimitsCount = 6
    }
}