blob: bed874c4f1db5e8325ebf8e4a5f4d037eb014dc5 (
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>
#ifndef OPENTRACK_MAIN
# define FTNOIR_PROTOCOL_BASE_EXPORT Q_DECL_EXPORT
#else
# define FTNOIR_PROTOCOL_BASE_EXPORT Q_DECL_IMPORT
#endif
#endif // FTNOIR_PROTOCOL_BASE_GLOBAL_H
|