#include "FsiJsonUtils.h"
#include <fstream>
#include <rapidjson/istreamwrapper.h>
#include <rapidjson/ostreamwrapper.h>
#include <rapidjson/writer.h>
Go to the source code of this file.
|
void | foreign_storage::json_utils::set_value (rapidjson::Value &json_val, const long unsigned int &value, rapidjson::Document::AllocatorType &allocator) |
|
void | foreign_storage::json_utils::get_value (const rapidjson::Value &json_val, long unsigned int &value) |
|
void | foreign_storage::json_utils::set_value (rapidjson::Value &json_val, const int &value, rapidjson::Document::AllocatorType &allocator) |
|
void | foreign_storage::json_utils::get_value (const rapidjson::Value &json_val, int &value) |
|
void | foreign_storage::json_utils::set_value (rapidjson::Value &json_val, const std::string &value, rapidjson::Document::AllocatorType &allocator) |
|
void | foreign_storage::json_utils::get_value (const rapidjson::Value &json_val, std::string &value) |
|
rapidjson::Document | foreign_storage::json_utils::read_from_file (const std::string &file_path) |
|
void | foreign_storage::json_utils::write_to_file (const rapidjson::Document &document, const std::string &filepath) |
|