You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
#ifndef KDCHART_EXPORT_H
|
|
#define KDCHART_EXPORT_H
|
|
|
|
#if defined(__KDE_HAVE_GCC_VISIBILITY) || defined(G_HAVE_GCC_VISIBILITY)
|
|
#define KDCHART_NO_EXPORT __attribute__ ((visibility("hidden")))
|
|
#define KDCHART_EXPORT __attribute__ ((visibility("default")))
|
|
#elif defined(_WIN32)
|
|
#define KDCHART_NO_EXPORT
|
|
#define KDCHART_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define KDCHART_NO_EXPORT
|
|
#define KDCHART_EXPORT
|
|
#endif
|
|
|
|
#endif
|