Create qurltlds_p.h

This commit is contained in:
Faraz Fallahi
2020-06-21 13:23:05 -04:00
parent 9bafba7a18
commit 0ee8a4c32e

21
qurltlds_p.h Normal file
View File

@@ -0,0 +1,21 @@
// qtbase/src/network/kernel/qurltlds_p.h
#ifndef QURLTLD_P_H
#define QURLTLD_P_H
#include <QtNetwork/private/qtnetworkglobal_p.h>
QT_BEGIN_NAMESPACE
static const quint16 tldCount = 1;
static constexpr quint32 tldIndices[tldCount + 1] = {0, 1};
static const quint16 tldChunkCount = 2;
static const char * const tldData[tldChunkCount] = {"\0", "\0"};
static constexpr quint32 tldChunks[tldChunkCount] = {0, 1};
QT_END_NAMESPACE
#endif // QURLTLD_P_H