aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/common/singleton.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-07-22 15:25:01 +0800
committerchai <chaifix@163.com>2018-07-22 15:25:01 +0800
commitad483a2d1c25f2f986eedbdadf4dbf1f24d0c532 (patch)
tree195233426c0fbace33e5c51d4e1e9d367701fe25 /src/libjin/common/singleton.h
parentb2c7bb0b283dd2a80f345e26c042d6ffaf05209c (diff)
*singleton
Diffstat (limited to 'src/libjin/common/singleton.h')
-rw-r--r--src/libjin/common/singleton.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/libjin/common/singleton.h b/src/libjin/common/singleton.h
new file mode 100644
index 0000000..e6326b2
--- /dev/null
+++ b/src/libjin/common/singleton.h
@@ -0,0 +1,34 @@
+#ifndef __JIN_SINGLETON_H
+#define __JIN_SINGLETON_H
+
+namespace jin
+{
+ template<class T>
+ class Singleton
+ {
+ public:
+ static T* get()
+ {
+ if (_instance == nullptr)
+ _instance = new T;
+ return _instance;
+ }
+ static void destroy()
+ {
+ delete _instance;
+ _instance = nullptr;
+ }
+ protected:
+ Singleton() {};
+ virtual ~Singleton() {};
+ private:
+ Singleton(const Singleton&);
+ Singleton& operator = (const Singleton&);
+
+ static T* _instance;
+ };
+
+ template<class T> T* Singleton<T>::_instance = nullptr;
+}
+
+#endif \ No newline at end of file