12345678910111213 |
- #pragma once
- #include <obs.hpp>
- #include <QString>
- #include <nlohmann/json_fwd.hpp>
- /**
- * Returns the input serialized to JSON, but any non-empty "authorization"
- * properties have their values replaced by "CENSORED".
- */
- QString censoredJson(obs_data_t *data, bool pretty = false);
- QString censoredJson(nlohmann::json data, bool pretty = false);
|