summaryrefslogtreecommitdiffstats
path: root/lib/inifile/iniFile.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-09-03 23:00:16 +0200
committermadmaxoft <github@xoft.cz>2014-09-03 23:00:16 +0200
commitfac89d0c437c822e41fe12529a875279f48fd2d0 (patch)
treed2fac801d1a38b576313c0ad7ccf69f19cbfb57f /lib/inifile/iniFile.h
parentUpdated SQLiteCpp. (diff)
downloadcuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.tar
cuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.tar.gz
cuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.tar.bz2
cuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.tar.lz
cuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.tar.xz
cuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.tar.zst
cuberite-fac89d0c437c822e41fe12529a875279f48fd2d0.zip
Diffstat (limited to 'lib/inifile/iniFile.h')
-rw-r--r--lib/inifile/iniFile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/inifile/iniFile.h b/lib/inifile/iniFile.h
index 58fecd0cf..33229bff0 100644
--- a/lib/inifile/iniFile.h
+++ b/lib/inifile/iniFile.h
@@ -53,7 +53,9 @@ private:
/// Removes the UTF-8 BOMs (Byte order makers), if present.
void RemoveBom(AString & a_line) const;
+
public:
+
enum errors
{
noID = -1,
@@ -79,6 +81,9 @@ public:
/// Deletes all stored ini data (but doesn't touch the file)
void Clear(void);
+
+ /** Returns true iff the specified value exists. */
+ bool HasValue(const AString & a_KeyName, const AString & a_ValueName);
/// Returns index of specified key, or noID if not found
int FindKey(const AString & keyname) const;