mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04: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;
|
||
|
}
|
||
|
};
|
||
|
}
|