Inviwo 0.9.12-pre
Inviwo documentation
Loading...
Searching...
No Matches
inviwo::JSONConvertable Concept Reference

Concept definition

template<typename T>
concept inviwo::JSONConvertable = requires(T& t, json& j) {
{ to_json(j, std::as_const(t)) } -> std::same_as<void>;
{ from_json(std::as_const(j), t) } -> std::same_as<void>;
}
Definition json.h:44
IVW_MODULE_DATAFRAME_API void to_json(nlohmann::json &j, const ColumnOptionProperty &p)
IVW_MODULE_DATAFRAME_API void from_json(const nlohmann::json &j, ColumnOptionProperty &p)