mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-07-17 19:56:38 -04:00
++
This commit is contained in:
parent
e851695045
commit
01ec96e810
2 changed files with 30 additions and 33 deletions
|
@ -280,6 +280,9 @@ public:
|
|||
const CString& GetString(const CString& section, const CString& key) const {
|
||||
return GetSection(section).GetString(key);
|
||||
}
|
||||
const CString& GetStringOr(const CString& section, const CString& key, const CString& def) const {
|
||||
return GetSection(section).GetStringOr(key, def);
|
||||
}
|
||||
const bool GetBool(const CString& section, const CString& key, bool def = false) const {
|
||||
return this->GetSection(section).GetBool(key, def);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue