qxLib
|
Go to the source code of this file.
Classes | |
struct | qx::singleton_traits< T > |
Macros | |
#define | QX_SINGLETON_S(T, specifiers) |
Simple Meyer's singleton. More... | |
#define | QX_SINGLETON(T) QX_SINGLETON_S(T, static) |
Simple Meyer's singleton. More... | |
#define QX_SINGLETON | ( | T | ) | QX_SINGLETON_S(T, static) |
Simple Meyer's singleton.
Implement singleton_traits for your type to change creation, getting and destruction behaviour
T | - your class type |
Definition at line 90 of file singleton.h.
#define QX_SINGLETON_S | ( | T, | |
specifiers | |||
) |
Simple Meyer's singleton.
Implement singleton_traits for your type to change creation, getting and destruction behaviour
T | - your class type |
specifiers | - type specifiers, such as "static" or "thread_safe" |
Definition at line 56 of file singleton.h.