mirror of https://github.com/CGAL/cgal
17 lines
307 B
C
17 lines
307 B
C
#ifndef SCENE_ITEM_CONFIG_H
|
|
#define SCENE_ITEM_CONFIG_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#ifdef demo_framework_EXPORTS
|
|
# define scene_item_EXPORTS
|
|
#endif
|
|
|
|
#ifdef scene_item_EXPORTS
|
|
# define SCENE_ITEM_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define SCENE_ITEM_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // SCENE_ITEM_CONFIG_H
|