2023-04-13 17:19:36 +02:00
|
|
|
/******************************************************************************
|
2023-05-12 14:26:24 +02:00
|
|
|
* QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH
|
2023-04-13 17:19:36 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2023-06-17 12:23:34 +02:00
|
|
|
#ifndef QSK_FLUENT2_GLOBAL_H
|
|
|
|
#define QSK_FLUENT2_GLOBAL_H
|
2023-04-13 17:19:36 +02:00
|
|
|
|
2023-07-02 12:18:47 +02:00
|
|
|
#include <QskGlobal.h>
|
2023-04-13 17:19:36 +02:00
|
|
|
|
|
|
|
#ifdef QSK_DLL
|
|
|
|
|
2023-06-17 12:23:34 +02:00
|
|
|
#if defined( QSK_FLUENT2_MAKEDLL ) // create a DLL library
|
|
|
|
#define QSK_FLUENT2_EXPORT Q_DECL_EXPORT
|
2023-04-13 17:19:36 +02:00
|
|
|
#else // use a DLL library
|
2023-06-17 12:23:34 +02:00
|
|
|
#define QSK_FLUENT2_EXPORT Q_DECL_IMPORT
|
2023-04-13 17:19:36 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // QSK_DLL
|
|
|
|
|
2023-06-17 12:23:34 +02:00
|
|
|
#ifndef QSK_FLUENT2_EXPORT
|
|
|
|
#define QSK_FLUENT2_EXPORT
|
2023-04-13 17:19:36 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|