forked from Green-Sky/tomato
10 lines
179 B
C++
10 lines
179 B
C++
|
#pragma once
|
||
|
|
||
|
#include <nlohmann/json_fwd.hpp>
|
||
|
|
||
|
// fwd
|
||
|
struct SimpleConfigModel;
|
||
|
|
||
|
bool load_json_into_config(const nlohmann::ordered_json& config_json, SimpleConfigModel& conf);
|
||
|
|