summaryrefslogtreecommitdiffstats
path: root/iniFile
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-07 15:46:43 +0200
committermadmaxoft <github@xoft.cz>2013-08-07 15:46:43 +0200
commit3d027a8928ee423ee6a475637752bd50a5f0d44c (patch)
tree82c6993605326422e188410dda8b897a28ce16ef /iniFile
parentMerge pull request #47 from tonibm19/master (diff)
parentDebuggers plugin: added the "/spidey" command. (diff)
downloadcuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.tar
cuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.tar.gz
cuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.tar.bz2
cuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.tar.lz
cuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.tar.xz
cuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.tar.zst
cuberite-3d027a8928ee423ee6a475637752bd50a5f0d44c.zip
Diffstat (limited to 'iniFile')
-rw-r--r--iniFile/iniFile.h5
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.