AusweisApp2
Lade ...
Suche ...
Keine Treffer
JsonValueRef.h
gehe zur Dokumentation dieser Datei
1
9#pragma once
10
11#include <QJsonValue>
12
13#if (QT_VERSION >= QT_VERSION_CHECK(6, 4, 0))
14using JsonValueRef = const QJsonValueConstRef;
15#elif (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
16using JsonValueRef = const QJsonValueRef;
17#else
18using JsonValueRef = const QJsonValue&;
19#endif
const QJsonValueConstRef JsonValueRef
Compatibility helper for Qt5/Qt6 JSON stuff.
Definition: JsonValueRef.h:14