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

#include <QtGlobal>

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

#endif // EXAMPLE_GLOBAL_H