LeviLamina
Loading...
Searching...
No Matches
Payload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Json { class Value; }
8// clang-format on
9
10namespace Editor::DataStore {
11
12class Payload {
13public:
14 // static functions
15 // NOLINTBEGIN
16 MCNAPI static ::Json::Value deserialize(::std::string const& payloadStr);
17
18 MCNAPI static void merge(::Json::Value& out, ::Json::Value const& in);
19
20 MCNAPI static ::std::string serialize(::Json::Value const& payload);
21 // NOLINTEND
22};
23
24} // namespace Editor::DataStore
Definition Payload.h:12
static MCAPI void merge(::Json::Value &out, ::Json::Value const &in)
static MCAPI ::std::string serialize(::Json::Value const &payload)
static MCAPI ::Json::Value deserialize(::std::string const &payloadStr)
Definition Value.h:16