1234567891011121314151617 |
- #ifndef TELEPHONY_GLOBAL_H
- #define TELEPHONY_GLOBAL_H
- #include <QtCore/qglobal.h>
- #if defined(XQTELEPHONY_LIBRARY)
- # define XQTELEPHONY_EXPORT Q_DECL_EXPORT
- #else
- # if defined(XQTELEPHONY_NO_LIBRARY)
- # define XQTELEPHONY_EXPORT
- # else
- # define XQTELEPHONY_EXPORT Q_DECL_IMPORT
- # endif
- #endif
- #endif // TELEPHONY_GLOBAL_H
|