Go to the documentation of this file.
17 #define QX_GETTER(type, name) \
18 const type& Get##name() const \
29 #define QX_GETTER_REF(type, name) \
42 #define QX_SETTER(type, name) \
43 void Set##name(const type& val) \
55 #define QX_PROPERTY(type, name, ...) \
57 QX_GETTER(type, name); \
58 QX_SETTER(type, name); \
61 type m_##name = type(__VA_ARGS__)