| 1253 | } |
| 1254 | |
| 1255 | Base::Color ParameterGrp::GetColor(const char* Name, Base::Color lPreset) const |
| 1256 | { |
| 1257 | auto packed = GetUnsigned(Name, lPreset.getPackedValue()); |
| 1258 | |
| 1259 | return Color(static_cast<uint32_t>(packed)); |
| 1260 | } |
| 1261 | |
| 1262 | void ParameterGrp::SetColor(const char* Name, Base::Color lValue) |
| 1263 | { |
no test coverage detected