Cleaned up and fixed some errors in the Json Parser.

This commit is contained in:
2024-08-15 19:28:30 -07:00
parent 2e705627ac
commit c607b20bad
14 changed files with 241 additions and 253 deletions

View File

@@ -7,14 +7,14 @@
namespace ehs
{
class EHS_LIB_IO JsonBool : public JsonBase
class EHS_LIB_IO JsonBool final : public JsonBase
{
public:
bool value;
JsonBool();
JsonBool(const bool value);
JsonBool(bool value);
JsonBool(const JsonBool& jb) = default;
@@ -22,6 +22,6 @@ namespace ehs
operator bool&();
Str_8 ToStr(const UInt_64 level, const bool compact) const;
Str_8 ToStr(UInt_64 level, bool compact) const override;
};
}