QSkinny
0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskGlobal.h
1
/******************************************************************************
2
* QSkinny - Copyright (C) The authors
3
* SPDX-License-Identifier: BSD-3-Clause
4
*****************************************************************************/
5
6
#ifndef QSK_GLOBAL_H
7
#define QSK_GLOBAL_H
8
9
#include <qglobal.h>
10
11
#if QT_VERSION < QT_VERSION_CHECK( 5, 15, 0 )
12
static_assert
(
false
,
"QSkinny requires Qt >= 5.15"
);
13
#endif
14
15
// QSK_VERSION is (major << 16) + (minor << 8) + patch.
16
17
#define QSK_VERSION 0x000001
18
#define QSK_VERSION_STR "0.0.1"
19
20
#ifdef QSK_DLL
21
22
#if defined( QSK_MAKEDLL )
// create a DLL library
23
#define QSK_EXPORT Q_DECL_EXPORT
24
#else
// use a DLL library
25
#define QSK_EXPORT Q_DECL_IMPORT
26
#endif
27
28
#endif
// QSK_DLL
29
30
#ifndef QSK_EXPORT
31
#define QSK_EXPORT
32
#endif
33
34
#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
35
using
QskHashValue = uint;
36
#else
37
using
QskHashValue = size_t;
38
#endif
39
40
#endif
src
common
QskGlobal.h
Generated by
1.9.8