mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-13 01:44:10 -04:00
14 lines
351 B
C++
14 lines
351 B
C++
#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);
|