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

@@ -21,14 +21,16 @@ namespace ehs
JsonType type;
public:
virtual ~JsonBase() = default;
JsonBase();
JsonBase(const JsonType type);
JsonBase(JsonType type);
JsonBase(const JsonBase& base) = default;
JsonType GetType() const;
virtual Str_8 ToStr(const UInt_64 level, const bool compact) const;
virtual Str_8 ToStr(UInt_64 level, bool compact) const;
};
}