19 lines
267 B
C
19 lines
267 B
C
|
|
#ifndef COCKPITGLOBAL_H
|
||
|
|
#define COCKPITGLOBAL_H
|
||
|
|
|
||
|
|
|
||
|
|
#include <QtCore/qglobal.h>
|
||
|
|
|
||
|
|
#ifdef QtCockpit
|
||
|
|
#if defined(COCKPIT_LIBRARY)
|
||
|
|
# define COCKPITSHARED_EXPORT Q_DECL_EXPORT
|
||
|
|
#else
|
||
|
|
# define COCKPITSHARED_EXPORT Q_DECL_IMPORT
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif // COPKITGLOBAL_H
|