Object Detection
5.0
Image Processing Using Qt and Opencv
circledetectorpluginloaderview_global.h
1
#ifndef CIRCLEDETECTORPLUGINLOADERVIEW_GLOBAL_H
2
#define CIRCLEDETECTORPLUGINLOADERVIEW_GLOBAL_H
3
4
#ifndef CIRCLE_PLUGIN_LOADER_USE_STATIC_LIB
5
# include <QtCore/qglobal.h>
6
# define CIRCLE_PLUGIN_LOADER_LIB CIRCLEPLUGINLOADERSHARED_EXPORT
7
# if defined(CIRCLEDETECTORVIEW_LIBRARY)
8
# define CIRCLEPLUGINLOADERSHARED_EXPORT Q_DECL_EXPORT
9
# else
10
# define CIRCLEPLUGINLOADERSHARED_EXPORT Q_DECL_IMPORT
11
# endif
12
#else
13
# define CIRCLE_PLUGIN_LOADER_LIB
14
#endif
15
16
#define CIRCLE_PLUGIN_LOADER_BEGIN_NAMESPACE
17
#define CIRCLE_PLUGIN_LOADER_END_NAMESPACE
18
19
#ifdef USE_CPP_STD_14
20
#include <cstdio>
21
# define INIT_UNIQUE_PTR(TYPE, ...) std::make_unique<TYPE>(__VA_ARGS__)
22
#else
23
# define INIT_UNIQUE_PTR(TYPE, ...) std::unique_ptr<TYPE>(new TYPE(__VA_ARGS__))
24
#endif
25
#endif // CIRCLEDETECTORPLUGINMODEL_GLOBAL_H
object-detector
src
Utilities
Plugins
CircleDetectorPlugins
PluginLoader
CircleDetectorPluginLoaderView
circledetectorpluginloaderview_global.h
Generated by
1.8.13