13 lines
252 B
C
13 lines
252 B
C
|
#ifndef LIBTEXTEDIT_GLOBAL_H
|
||
|
#define LIBTEXTEDIT_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(LIBTEXTEDIT_LIBRARY)
|
||
|
# define LIBTEXTEDIT_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define LIBTEXTEDIT_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // LIBTEXTEDIT_GLOBAL_H
|