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