mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-12-26 01:28:53 +00:00
17 lines
238 B
C
17 lines
238 B
C
|
namespace Language
|
||
|
{
|
||
|
template <class T>
|
||
|
class Singleton
|
||
|
{
|
||
|
Singleton() {}
|
||
|
Singleton(Singleton &s) {}
|
||
|
Singleton& operator=(const Singleton&) {}
|
||
|
public:
|
||
|
static T* instance()
|
||
|
{
|
||
|
static T* obj = new T;
|
||
|
return obj;
|
||
|
}
|
||
|
};
|
||
|
}
|