summaryrefslogtreecommitdiffstats
path: root/core/io/config_file.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-10-08 15:46:13 +0200
committerGitHub <noreply@github.com>2019-10-08 15:46:13 +0200
commitc2edaa97f3336e9d6660302b3e30fd921bf20fcc (patch)
tree9e16d1b04860a3c5f7723818de2f1ec378cda292 /core/io/config_file.h
parent2078dcbe15e7b1a25bc06b0834a007d63c7ccd01 (diff)
parent54cba54a45fd3d9fbe30f3c8100d7890d7586b82 (diff)
downloadredot-engine-c2edaa97f3336e9d6660302b3e30fd921bf20fcc.tar.gz
Merge pull request #32426 from gianllucah/master
Option to erase a section key in ConfigFile
Diffstat (limited to 'core/io/config_file.h')
-rw-r--r--core/io/config_file.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/config_file.h b/core/io/config_file.h
index 3ab6fef868..d927779f9c 100644
--- a/core/io/config_file.h
+++ b/core/io/config_file.h
@@ -60,6 +60,7 @@ public:
void get_section_keys(const String &p_section, List<String> *r_keys) const;
void erase_section(const String &p_section);
+ void erase_section_key(const String &p_section, const String &p_key);
Error save(const String &p_path);
Error load(const String &p_path);