blob: 402246f30745725eb7175292c87e22e44f108882 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef CORESQLITESTUDIO_GLOBAL_H
#define CORESQLITESTUDIO_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(CORESQLITESTUDIO_LIBRARY)
# define API_EXPORT Q_DECL_EXPORT
#else
# define API_EXPORT
//# define API_EXPORT Q_DECL_IMPORT
#endif
#ifdef Q_OS_WIN
# define PATH_LIST_SEPARATOR ";"
#else
# define PATH_LIST_SEPARATOR ":"
#endif
#endif // CORESQLITESTUDIO_GLOBAL_H
|