Reorganized project again.

This commit is contained in:
2023-12-17 15:56:13 -08:00
parent 54b9e82789
commit 3acb78f247
250 changed files with 1586 additions and 1586 deletions

24
src/json/JsonBase.cpp Normal file
View File

@@ -0,0 +1,24 @@
#include "json/JsonBase.h"
namespace ehs
{
JsonBase::JsonBase()
: type(JsonType::NULLOBJ)
{
}
JsonBase::JsonBase(const JsonType type)
: type(type)
{
}
JsonType JsonBase::GetType() const
{
return type;
}
Str_8 JsonBase::ToStr(const UInt_64 level, const bool compact) const
{
return {};
}
}