mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-05 03:43:40 +00:00
15 lines
582 B
C++
15 lines
582 B
C++
|
|
#pragma once
|
|
#include "../Global.h"
|
|
#include "Json.hpp"
|
|
|
|
|
|
namespace JsonHelpers {
|
|
//void addObjectArrayField(class Json::Value &, std::string const &, std::vector<class Json::Value> const &);
|
|
//void addObjectField(class Json::Value &, std::string const &, class Json::Value const &);
|
|
//void addStringField(class Json::Value &, std::string const &, std::string const &);
|
|
//void addUint32Field(class Json::Value &, std::string const &, unsigned int const &);
|
|
bool parseJson(std::string const &str, class Json::Value &value);
|
|
std::string serialize(class Json::Value const &value);
|
|
|
|
}; |