44 enum class available_values : std::uint8_t
51 available_values available{available_values::none};
54 friend bool operator& (available_values left
55 , available_values right)
57 return std::to_underlying(left)
58 & std::to_underlying(right);
61 friend available_values operator| (available_values left
62 , available_values right)
64 return static_cast<available_values
>
65 (std::to_underlying(left)
66 | std::to_underlying(right));
70 bool bool_value{
false};
Empty struct for devices that do not support MIDI.
Definition midi.hpp:11
Serves as the root of the widget tree. Also provides access to buttons componnents.
Definition base_controller.hpp:10