blob: 662d00f76ce4273323491ec6dd672b6906c417cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#pragma once
#include <QtCore/qglobal.h>
QT_BEGIN_NAMESPACE
# if defined(QT_BUILD_XCB_PLUGIN)
# define Q_XCB_EXPORT Q_DECL_EXPORT
# else
# define Q_XCB_EXPORT Q_DECL_IMPORT
# endif
QT_END_NAMESPACE
|