56 #define QX_SINGLETON_S(T, specifiers) \
58 friend struct qx::singleton_traits<T>; \
62 qx::singleton_traits<T>::on_constructed(*this); \
66 qx::singleton_traits<T>::on_destructed(*this); \
68 T(const T&) = delete; \
70 const T& operator=(const T&) = delete; \
71 const T& operator=(T&&) = delete; \
74 static T& get_instance() \
76 specifiers T instance; \
77 qx::singleton_traits<T>::on_getter(instance); \
90 #define QX_SINGLETON(T) QX_SINGLETON_S(T, static)
static void on_getter(T &instance)
Called when singleton proceeds getter.
static void on_destructed(T &instance)
Called before singleton destructed.
static void on_constructed(T &instance)
Called when singleton constructed.