18 lines
288 B
C
18 lines
288 B
C
|
|
|
||
|
|
#ifndef SERIALPORTGLOBAL_H
|
||
|
|
#define SERIALPORTGLOBAL_H
|
||
|
|
|
||
|
|
#include <QtCore/qglobal.h>
|
||
|
|
|
||
|
|
#ifdef QtSerialPort
|
||
|
|
#if defined(SERIALPORT_LIBRARY)
|
||
|
|
# define SERIALPORTSHARED_EXPORT Q_DECL_EXPORT
|
||
|
|
#else
|
||
|
|
# define SERIALPORTSHARED_EXPORT Q_DECL_IMPORT
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif // SERIALPORTGLOBAL_H
|