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