qxLib
Classes | Macros
singleton.h File Reference

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...
 

Detailed Description

Author
Khrapov
Date
17.06.2019

Definition in file singleton.h.

Macro Definition Documentation

◆ QX_SINGLETON

#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

Parameters
T- your class type

Definition at line 90 of file singleton.h.

◆ QX_SINGLETON_S

#define QX_SINGLETON_S (   T,
  specifiers 
)
Value:
private: \
friend struct qx::singleton_traits<T>; \
\
T() \
{ \
} \
~T() \
{ \
} \
T(const T&) = delete; \
T(T&&) = delete; \
const T& operator=(const T&) = delete; \
const T& operator=(T&&) = delete; \
\
public: \
static T& get_instance() \
{ \
specifiers T instance; \
return instance; \
} \
\
private:
static void on_getter(T &instance)
Called when singleton proceeds getter.
Definition: singleton.h:33
static void on_destructed(T &instance)
Called before singleton destructed.
Definition: singleton.h:41
static void on_constructed(T &instance)
Called when singleton constructed.
Definition: singleton.h:25

Simple Meyer's singleton.

Implement singleton_traits for your type to change creation, getting and destruction behaviour

Parameters
T- your class type
specifiers- type specifiers, such as "static" or "thread_safe"

Definition at line 56 of file singleton.h.