-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathqgis_app.h
executable file
·86 lines (68 loc) · 1.69 KB
/
qgis_app.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#ifndef APP_EXPORT_H
#define APP_EXPORT_H
#ifdef WIN32
#ifdef APP_STATIC_DEFINE
# define APP_EXPORT
# define APP_NO_EXPORT
#else
# ifndef APP_EXPORT
# ifdef qgis_app_EXPORTS
/* We are building this library */
# define APP_EXPORT __declspec(dllexport)
# else
/* We are using this library */
# define APP_EXPORT __declspec(dllimport)
# endif
# endif
# ifndef APP_NO_EXPORT
# define APP_NO_EXPORT
# endif
#endif
#ifndef APP_DEPRECATED
# define APP_DEPRECATED
#endif
#ifndef APP_DEPRECATED_EXPORT
# define APP_DEPRECATED_EXPORT APP_EXPORT APP_DEPRECATED
#endif
#ifndef APP_DEPRECATED_NO_EXPORT
# define APP_DEPRECATED_NO_EXPORT APP_NO_EXPORT APP_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef APP_NO_DEPRECATED
# define APP_NO_DEPRECATED
# endif
#endif
#else
#ifdef APP_STATIC_DEFINE
# define APP_EXPORT
# define APP_NO_EXPORT
#else
# ifndef APP_EXPORT
# ifdef qgis_app_EXPORTS
/* We are building this library */
# define APP_EXPORT __attribute__((visibility("default")))
# else
/* We are using this library */
# define APP_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef APP_NO_EXPORT
# define APP_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef APP_DEPRECATED
# define APP_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef APP_DEPRECATED_EXPORT
# define APP_DEPRECATED_EXPORT APP_EXPORT APP_DEPRECATED
#endif
#ifndef APP_DEPRECATED_NO_EXPORT
# define APP_DEPRECATED_NO_EXPORT APP_NO_EXPORT APP_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef APP_NO_DEPRECATED
# define APP_NO_DEPRECATED
# endif
#endif
#endif
#endif /* APP_EXPORT_H */