mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-08 20:20:44 +00:00
16 lines
276 B
C
16 lines
276 B
C
|
|
||
|
|
||
|
#ifndef QEXTSERIALPORT_GLOBAL_H
|
||
|
#define QEXTSERIALPORT_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#ifdef QEXTSERIALPORT_LIB
|
||
|
# define QEXTSERIALPORT_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define QEXTSERIALPORT_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // QEXTSERIALPORT_GLOBAL_H
|
||
|
|