Searched refs:FeaturesBits (Results 1 – 1 of 1) sorted by relevance
35 enum class FeaturesBits : uint32_t { enum134 virtual void GetFeatures(Callback<void(FeaturesBits)> callback) = 0;145 inline constexpr bool operator&(Controller::FeaturesBits left,146 Controller::FeaturesBits right) {148 static_cast<std::underlying_type_t<Controller::FeaturesBits>>(left) &149 static_cast<std::underlying_type_t<Controller::FeaturesBits>>(right));152 inline constexpr Controller::FeaturesBits operator|(153 Controller::FeaturesBits left, Controller::FeaturesBits right) {154 return static_cast<Controller::FeaturesBits>(155 static_cast<std::underlying_type_t<Controller::FeaturesBits>>(left) |[all …]