AusweisApp2
Lade ...
Suche ...
Keine Treffer
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))
12using JsonValueRef = const QJsonValueConstRef;
13#elif (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
14using JsonValueRef = const QJsonValueRef;
15#else
16using JsonValueRef = const QJsonValue&;
17#endif
const QJsonValueConstRef JsonValueRef
Compatibility helper for Qt5/Qt6 JSON stuff.
Definition: JsonValueRef.h:12