blob: ca51e26de01bb3b22b6fa436b0405c783e3ecabf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef FTNOIR_PROTOCOL_BASE_GLOBAL_H
#define FTNOIR_PROTOCOL_BASE_GLOBAL_H
#include <QtGlobal>
#ifdef FTNOIR_PROTOCOL_BASE_LIB
# define FTNOIR_PROTOCOL_BASE_EXPORT Q_DECL_EXPORT
#else
# define FTNOIR_PROTOCOL_BASE_EXPORT Q_DECL_IMPORT
#endif
#endif // FTNOIR_PROTOCOL_BASE_GLOBAL_H
|