blob: cee5321b9cb5399f058c47c0d9a396532b68648f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CSVIMPORT_GLOBAL_H
#define CSVIMPORT_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(CSVIMPORT_LIBRARY)
# define CSVIMPORTSHARED_EXPORT Q_DECL_EXPORT
#else
# define CSVIMPORTSHARED_EXPORT Q_DECL_IMPORT
#endif
#endif // CSVIMPORT_GLOBAL_H
|