5#include "enum_metadata.hpp"
7namespace hi {
inline namespace v1 {
25constexpr auto device_type_metadata = enum_metadata{
26 device_type::desktop,
"desktop",
27 device_type::server,
"server",
28 device_type::watch,
"watch",
29 device_type::phone,
"phone",
30 device_type::tablet,
"tablet",
31 device_type::game_console,
"game console",
32 device_type::television,
"television"
40struct std::formatter<
hi::device_type, char> : std::formatter<std::string_view, char> {
43 return std::formatter<std::string_view, char>::format(hi::device_type_metadata[t], fc);
The HikoGUI namespace.
Definition array_generic.hpp:20
device_type
The device type this application is running on.
Definition device_type.hpp:14
DOXYGEN BUG.
Definition algorithm_misc.hpp:20