Go to the source code of this file.
◆ MYGUI_SINGLETON_DECLARATION
#define MYGUI_SINGLETON_DECLARATION |
( |
| ClassName | ) |
|
Value:private: \
void initialiseSingleton(); \
void shutdownSingleton(); \
\
public: \
static ClassName& getInstance(); \
static ClassName* getInstancePtr(); \
static std::string_view getClassTypeName(); \
ClassName(const ClassName&) = delete; \
ClassName& operator=(const ClassName&) = delete
Definition at line 112 of file MyGUI_Singleton.h.
◆ MYGUI_SINGLETON_DEFINITION
#define MYGUI_SINGLETON_DEFINITION |
( |
| ClassName | ) |
|