mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:40:05 +00:00
24 lines
482 B
C++
24 lines
482 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
|
|
#include <boost/json/value.hpp>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace util
|
|
{
|
|
namespace json
|
|
{
|
|
|
|
boost::json::value ReadJsonFile(const std::string& path);
|
|
void WriteJsonFile(const std::string& path,
|
|
const boost::json::value& json,
|
|
bool prettyPrint = true);
|
|
|
|
} // namespace json
|
|
} // namespace util
|
|
} // namespace qt
|
|
} // namespace scwx
|