16 lines
297 B
C
16 lines
297 B
C
|
#ifndef GENERICCONSOLE_GLOBAL_H
|
||
|
#define GENERICCONSOLE_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(GENERICCONSOLE_LIBRARY)
|
||
|
# define GENERICCONSOLE_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define GENERICCONSOLE_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#define NAME(type) #type
|
||
|
|
||
|
#endif // GENERICCONSOLE_GLOBAL_H
|