diff options
author | madmaxoft <github@xoft.cz> | 2013-08-07 14:32:08 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-07 14:32:08 +0200 |
commit | 2f6b2b7bac8d220b356134f3270eca7c267524c9 (patch) | |
tree | e7ab17f634641fad273348a0ab497a644dfe7106 /iniFile/iniFile.h | |
parent | cLuaState has reference management, param checking and a fixed destructor. (diff) | |
download | cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.tar cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.tar.gz cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.tar.bz2 cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.tar.lz cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.tar.xz cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.tar.zst cuberite-2f6b2b7bac8d220b356134f3270eca7c267524c9.zip |
Diffstat (limited to '')
-rw-r--r-- | iniFile/iniFile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/iniFile/iniFile.h b/iniFile/iniFile.h index ebbcc5081..aef45c094 100644 --- a/iniFile/iniFile.h +++ b/iniFile/iniFile.h @@ -154,7 +154,12 @@ public: return SetValueI( keyname, valuename, int(value), create); } bool SetValueF( const std::string & keyname, const std::string & valuename, const double value, const bool create = true); + + // tolua_end + bool SetValueV( const std::string & keyname, const std::string & valuename, char *format, ...); + + // tolua_begin // Deletes specified value. // Returns true if value existed and deleted, false otherwise. |