blob: 2a7d2c8c17094a524b3dd0a9fee566fd50588ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2017 Witekio.
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QCOAPGLOBAL_H
#define QCOAPGLOBAL_H
#include <QtCore/qglobal.h>
#include <QtCore/qobject.h>
#include <QtCoap/qtcoapexports.h>
QT_BEGIN_NAMESPACE
typedef QByteArray QCoapToken;
typedef quint16 QCoapMessageId;
QT_END_NAMESPACE
#endif // QCOAPGLOBAL_H
|