2018-10-12 08:03:03 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
2023-04-06 09:23:37 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-10-12 08:03:03 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2022-07-05 08:36:25 +02:00
|
|
|
#ifndef QSK_MATERIAL3_GLOBAL_H
|
|
|
|
#define QSK_MATERIAL3_GLOBAL_H
|
2018-10-12 08:03:03 +02:00
|
|
|
|
|
|
|
#include "QskGlobal.h"
|
|
|
|
|
|
|
|
#ifdef QSK_DLL
|
|
|
|
|
2022-07-05 08:36:25 +02:00
|
|
|
#if defined( QSK_MATERIAL3_MAKEDLL ) // create a DLL library
|
|
|
|
#define QSK_MATERIAL3_EXPORT Q_DECL_EXPORT
|
2018-10-12 08:03:03 +02:00
|
|
|
#else // use a DLL library
|
2022-07-05 08:36:25 +02:00
|
|
|
#define QSK_MATERIAL3_EXPORT Q_DECL_IMPORT
|
2018-10-12 08:03:03 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // QSK_DLL
|
|
|
|
|
2022-07-05 08:36:25 +02:00
|
|
|
#ifndef QSK_MATERIAL3_EXPORT
|
|
|
|
#define QSK_MATERIAL3_EXPORT
|
2018-10-12 08:03:03 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|