/* SPDX-FileCopyrightText: 2021 Jonah BrĂ¼chert SPDX-FileCopyrightText: 2021 Arjen Hiemstra SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef UNITS_H #define UNITS_H #include #include #include class Units : public Kirigami::Platform::Units { Q_OBJECT public: explicit Units(QObject *parent = nullptr); void updateAnimationSpeed(); private: KConfigWatcher::Ptr m_animationSpeedWatcher; }; #endif