mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 03:02:49 +00:00
Add char to config
This commit is contained in:
parent
18f3e123ed
commit
49a73063d5
1 changed files with 11 additions and 0 deletions
|
@ -43,6 +43,17 @@ void ApplyProperty<double>(double& propertyToSet, const std::string_view& value)
|
||||||
propertyToSet = std::stod(valStr.c_str());
|
propertyToSet = std::stod(valStr.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
void ApplyProperty<char>(char& propertyToSet, const std::string_view& value)
|
||||||
|
{
|
||||||
|
if (value.size() > 1)
|
||||||
|
{
|
||||||
|
LOG("Invalid size for char property: " << value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
propertyToSet = value[0];
|
||||||
|
}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
void ApplyProperty<bool>(bool& propertyToSet, const std::string_view& value)
|
void ApplyProperty<bool>(bool& propertyToSet, const std::string_view& value)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue