Hotwheels-Cluster 1.2
Creation of Cluster APP for SEA:ME project.
 
Loading...
Searching...
No Matches
enums.hpp
Go to the documentation of this file.
1
15
16#ifndef ENUMS_HPP
17#define ENUMS_HPP
18
19#include <QtCore/qmetatype.h>
20
26enum class ClusterTheme { Dark, Light };
30enum class CarDirection { Drive, Reverse, Stop };
31
32Q_DECLARE_METATYPE(ComponentStatus)
33Q_DECLARE_METATYPE(DrivingMode)
34Q_DECLARE_METATYPE(ClusterTheme)
35Q_DECLARE_METATYPE(ClusterMetrics)
36Q_DECLARE_METATYPE(CarDirection)
37
38#endif // ENUMS_HPP
ComponentStatus
Enum class for the component status.
Definition enums.hpp:22
DrivingMode
Enum class for the driving mode.
Definition enums.hpp:24
CarDirection
Enum class for the car direction.
Definition enums.hpp:30
ClusterTheme
Enum class for the cluster theme.
Definition enums.hpp:26
ClusterMetrics
Enum class for the cluster metrics.
Definition enums.hpp:28