Reorganized project again.
This commit is contained in:
24
src/json/JsonBase.cpp
Normal file
24
src/json/JsonBase.cpp
Normal 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 {};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user