QtService  1.1.0
A platform independent library to easily create system services and use some of their features
qtservice_global.h
1 #ifndef QTSERVICE_GLOBAL_H
2 #define QTSERVICE_GLOBAL_H
3 
4 #include <QtCore/qglobal.h>
5 
6 #if defined(QT_BUILD_SERVICE_LIB)
7 # define Q_SERVICE_EXPORT Q_DECL_EXPORT
8 #else
9 # define Q_SERVICE_EXPORT Q_DECL_IMPORT
10 #endif
11 
12 #endif // QTSERVICE_GLOBAL_H