diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-01-09 00:23:16 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-01-09 00:23:16 +0000 |
commit | bfea0319aa07ad2c921ba29ba216e921d65f2ed1 (patch) | |
tree | 8a61e8b5a1280445c94d1443205cc1d2a5a23736 /lib/jsonParse-persistence.cpp | |
parent | Fix test-persistence dependencies (diff) | |
download | ilt-bfea0319aa07ad2c921ba29ba216e921d65f2ed1.tar.bz2 ilt-bfea0319aa07ad2c921ba29ba216e921d65f2ed1.tar.xz ilt-bfea0319aa07ad2c921ba29ba216e921d65f2ed1.zip |
Integer support in persistence
Splits bool and arithmatic types, pass arithmatic values as string views from JSON and
parse according to the target type.
Diffstat (limited to 'lib/jsonParse-persistence.cpp')
-rw-r--r-- | lib/jsonParse-persistence.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/jsonParse-persistence.cpp b/lib/jsonParse-persistence.cpp index 5c0011a..ba61849 100644 --- a/lib/jsonParse-persistence.cpp +++ b/lib/jsonParse-persistence.cpp @@ -36,7 +36,7 @@ namespace Persistence { } void - JsonParsePersistence::pushNumber(float value) + JsonParsePersistence::pushNumber(std::string_view value) { pushValue(value); } @@ -164,6 +164,12 @@ namespace Persistence { } void + JsonWritePersistence::pushValue(int value) const + { + strm << value; + } + + void JsonWritePersistence::pushValue(std::nullptr_t) const { strm << "null"; |