1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#ifndef QOAUTHGLOBAL_H
5#define QOAUTHGLOBAL_H
6
7#include <QtCore/qglobal.h>
8#include <QtNetwork/qtnetworkglobal.h>
9
10QT_BEGIN_NAMESPACE
11
12#if defined(QT_SHARED) || !defined(QT_STATIC)
13# if defined(QT_BUILD_NETWORKAUTH_LIB)
14# define Q_OAUTH_EXPORT Q_DECL_EXPORT
15# else
16# define Q_OAUTH_EXPORT Q_DECL_IMPORT
17# endif
18#else
19# define Q_OAUTH_EXPORT
20#endif
21
22QT_END_NAMESPACE
23
24#endif // QOAUTHGLOBAL_H
25

source code of qtnetworkauth/src/oauth/qoauthglobal.h