++ team types .

This commit is contained in:
Zero Fanker 2024-04-08 21:04:59 -04:00
parent da6f42f3e1
commit 29f30ca599
2 changed files with 281 additions and 282 deletions

View file

@ -146,6 +146,10 @@ public:
this->SetString(key, INIHelper::ToString(val));
}
void SetBool(const CString& key, const bool val) {
this->SetString(key, INIHelper::ToString(val));
}
void Insert(const CString& key, const CString& value) {
this->Insert(key, CString(value));
}
@ -178,7 +182,9 @@ public:
void RemoveValue(const CString& val) {
auto const idx = this->FindValue(val);
RemoveAt(idx);
if (idx >= 0) {
RemoveAt(idx);
}
}
auto begin() const noexcept

File diff suppressed because it is too large Load diff