/* * Singleton.hpp * * Created on: 4 нояб. 2021 г. * Author: alexander */ #pragma once #include class Singleton { private: static Singleton *_instance; protected: Singleton(); ~Singleton(); public: static Singleton* Instance(); std::string getDiscription(); };