Start supporting dict and json types.
This commit is contained in:
parent
94fcc42aed
commit
5183aa821a
32 changed files with 288 additions and 247 deletions
12
src/base/core/serialization/json/JsonParser.cpp
Normal file
12
src/base/core/serialization/json/JsonParser.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "JsonParser.h"
|
||||
|
||||
Ptr<JsonDocument> JsonParser::read(const FileSystemPath& input_file)
|
||||
{
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
Ptr<JsonDocument> JsonParser::read(InputStream<Byte>& stream)
|
||||
{
|
||||
return {};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue