13 lines
246 B
C
13 lines
246 B
C
#ifndef EXCELLIB_GLOBAL_H
|
|
#define EXCELLIB_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(EXCELLIB_LIBRARY)
|
|
# define EXCELLIBSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define EXCELLIBSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // EXCELLIB_GLOBAL_H
|