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