|
| | FIniFile ()=default |
| | 使用来明确一个功能组的范围 更多...
|
| |
| | FIniFile (const FString &FileName) |
| |
|
| bool | Combine (const FString &FileName) |
| |
| void | ProcessInputFileContents (const FString &INIFileContents) |
| |
| bool | HasSection (const FString &Section) const |
| |
| void | AddSectionIfMissing (const FString &Section) |
| |
| bool | Write (const FString &Filename) |
| |
| const FConfigFile & | GetFConfigFile () const |
| |
|
| template<typename T > |
| void | GetInt (const TCHAR *Section, const TCHAR *Key, T &Target) const |
| |
| void | GetString (const TCHAR *Section, const TCHAR *Key, FString &Target) const |
| |
| void | GetBool (const TCHAR *Section, const TCHAR *Key, bool &Target) const |
| |
| void | GetFloat (const TCHAR *Section, const TCHAR *Key, float &Target, const float Factor=1.0f) const |
| |
| void | GetLinearColor (const TCHAR *Section, const TCHAR *Key, FLinearColor &Target) const |
| |
|
| void | SetInt (const TCHAR *Section, const TCHAR *Key, const int64 Value) |
| |
| void | SetString (const TCHAR *Section, const TCHAR *Key, const TCHAR *Value) |
| |
| void | SetString (const TCHAR *Section, const TCHAR *Key, const FString &Value) |
| |
| void | SetBool (const TCHAR *Section, const TCHAR *Key, const bool Value) |
| |
| void | SetFloat (const TCHAR *Section, const TCHAR *Key, const float Value) |
| |
| void | SetLinearColor (const TCHAR *Section, const TCHAR *Key, const FLinearColor &Value) |
| |