3#include <QtCore/QJsonValue>
4#include <QtCore/QObject>
5#include <QtCore/QStringView>
6#include <QtCore/QVersionNumber>
40 static bool textToBool(QStringView text) {
return text.compare(u
"true", Qt::CaseInsensitive) == 0; }
41 static bool jsonToBool(
const QJsonValue &value) {
return value.isBool() ? value.toBool() :
textToBool(value.toString()); }