aboutsummaryrefslogtreecommitdiff
path: root/common/ini-file.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/ini-file.h')
-rw-r--r--common/ini-file.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/ini-file.h b/common/ini-file.h
index 98be1e08bb..5d72f23bb9 100644
--- a/common/ini-file.h
+++ b/common/ini-file.h
@@ -77,7 +77,7 @@ public:
typedef List<Section> SectionList;
public:
- INIFile() {}
+ INIFile();
~INIFile() {}
// TODO: Maybe add a copy constructor etc.?
@@ -115,8 +115,11 @@ public:
void listKeyValues(StringMap &kv);
+ void allowNonEnglishCharacters();
+
private:
SectionList _sections;
+ bool _allowNonEnglishCharacters;
Section *getSection(const String &section);
const Section *getSection(const String &section) const;