Go to the documentation of this file.
8 #if defined(TF_MAKEDLL)
9 #define T_CORE_EXPORT Q_DECL_EXPORT
10 #define T_MODEL_EXPORT
12 #define T_CONTROLLER_EXPORT
13 #define T_HELPER_EXPORT
15 #define T_CORE_EXPORT Q_DECL_IMPORT
16 #define T_MODEL_EXPORT Q_DECL_EXPORT
17 #define T_VIEW_EXPORT Q_DECL_EXPORT
18 #define T_CONTROLLER_EXPORT Q_DECL_EXPORT
19 #define T_HELPER_EXPORT Q_DECL_EXPORT
22 #define T_MODEL_EXPORT
24 #define T_CONTROLLER_EXPORT
25 #define T_HELPER_EXPORT
29 #define T_MODEL_EXPORT
31 #define T_CONTROLLER_EXPORT
32 #define T_HELPER_EXPORT
37 #define T_DISABLE_COPY(Class) \
38 Class(const Class &) = delete; \
39 Class &operator=(const Class &) = delete;
41 #define T_DISABLE_MOVE(Class) \
42 Class(Class &&) = delete; \
43 Class &operator=(Class &&) = delete;