aboutsummaryrefslogtreecommitdiffstats
path: root/doc/api/examples/exampleplugin/example_global.h
blob: b51935fdaf6682bdc1e3f32786c4ed3bff6c8ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef EXAMPLE_GLOBAL_H
#define EXAMPLE_GLOBAL_H

#include <QtCore/QtGlobal>

#if defined(EXAMPLE_LIBRARY)
#  define EXAMPLESHARED_EXPORT Q_DECL_EXPORT
#else
#  define EXAMPLESHARED_EXPORT Q_DECL_IMPORT
#endif

#endif // EXAMPLE_GLOBAL_H