2024-02-05 22:25:30 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ehs/EHS.h"
|
|
|
|
#include "ehs/Str.h"
|
|
|
|
|
|
|
|
namespace ehs
|
|
|
|
{
|
|
|
|
enum class JsonType
|
|
|
|
{
|
|
|
|
NULLOBJ,
|
|
|
|
OBJ,
|
|
|
|
ARRAY,
|
|
|
|
BOOL,
|
|
|
|
NUM,
|
|
|
|
STR
|
|
|
|
};
|
|
|
|
|
2024-07-24 01:36:20 -07:00
|
|
|
class EHS_LIB_IO JsonBase
|
2024-02-05 22:25:30 -08:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
JsonType type;
|
|
|
|
|
|
|
|
public:
|
|
|
|
JsonBase();
|
|
|
|
|
|
|
|
JsonBase(const JsonType type);
|
|
|
|
|
|
|
|
JsonBase(const JsonBase& base) = default;
|
|
|
|
|
|
|
|
JsonType GetType() const;
|
|
|
|
|
|
|
|
virtual Str_8 ToStr(const UInt_64 level, const bool compact) const;
|
|
|
|
};
|
|
|
|
}
|