Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MJPA/SimpleJSON.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike <git@mjpa.co.uk>2011-02-17 00:41:13 +0300
committerMike <git@mjpa.co.uk>2011-02-17 00:41:13 +0300
commit63d17ad4f4163d7c341f309703c9094461b7745f (patch)
tree447067ce17228848596f14b5099ef3beaf292662 /src
parent1f30ac8c2611da6c4826c0876889c45870f5fc91 (diff)
Added ParseDecimal()
Diffstat (limited to 'src')
-rw-r--r--src/JSON.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/JSON.h b/src/JSON.h
index 62ba634..88de848 100644
--- a/src/JSON.h
+++ b/src/JSON.h
@@ -79,6 +79,7 @@ class JSON
static bool SkipWhitespace(const wchar_t **data);
static bool ExtractString(const wchar_t **data, std::wstring &str);
static double ParseInt(const wchar_t **data);
+ static double ParseDecimal(const wchar_t **data);
private:
JSON();
};