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