1 | // Copyright (C) 2023 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QGRPCMETADATA_H |
5 | #define QGRPCMETADATA_H |
6 | |
7 | #include <QtGrpc/qtgrpcglobal.h> |
8 | |
9 | #include <unordered_map> |
10 | |
11 | #if 0 |
12 | // Create a forwarding header |
13 | #pragma qt_class(QGrpcMetadata) |
14 | #pragma qt_sync_stop_processing |
15 | #endif |
16 | |
17 | QT_BEGIN_NAMESPACE |
18 | |
19 | using QGrpcMetadata = std::unordered_multimap<QByteArray, QByteArray>; |
20 | |
21 | QT_END_NAMESPACE |
22 | |
23 | #endif // QGRPCMETADATA_H |
24 | |