File: qt4helpers.h

package info (click to toggle)
qevercloud 3.0.3%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 916 kB
  • sloc: cpp: 4,690; yacc: 486; makefile: 38
file content (37 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * This header provides the "backports" of several Qt5 macros into Qt4
 * so that one can use Qt5 candies with Qt4 as well
 */

#ifndef QEVERCLOUD_QT4_HELPERS_H
#define QEVERCLOUD_QT4_HELPERS_H

#if QT_VERSION < 0x050000

#if __cplusplus >= 201103L
#define Q_DECL_OVERRIDE override
#define Q_DECL_FINAL final
#define Q_STATIC_ASSERT_X(x1,x2) static_assert(x1, x2)
#define Q_DECL_EQ_DELETE = delete
#define Q_DECL_EQ_DEFAULT = default
#else
#define Q_DECL_OVERRIDE
#define Q_DECL_FINAL
#define Q_STATIC_ASSERT_X(x1,x2)
#define Q_DECL_EQ_DELETE
#define Q_DECL_EQ_DEFAULT
#endif

#define QStringLiteral(x) QString(QLatin1String(x))

#define QEC_SIGNAL(className, methodName, ...) SIGNAL(methodName(__VA_ARGS__))
#define QEC_SLOT(className, methodName, ...) SLOT(methodName(__VA_ARGS__))

#else // QT_VERSION

#define QEC_SIGNAL(className, methodName, ...) &className::methodName
#define QEC_SLOT(className, methodName, ...) &className::methodName

#endif // QT_VERSION

#endif // QEVERCLOUD_QT4_HELPERS_H