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