forked from qt-creator/qt-creator
The usual boiler plate for plugins, including an option page that knows how to run "docker search" for demonstration purposes. Change-Id: I2df91f18f4869cbb2ee8f65ccb8b41969f8c90ae Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
11 lines
193 B
C
11 lines
193 B
C
#ifndef DOCKER_GLOBAL_H
|
|
#define DOCKER_GLOBAL_H
|
|
|
|
#if defined(DOCKER_LIBRARY)
|
|
# define DOCKER_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define DOCKER_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // DOCKER_GLOBAL_H
|