forked from pig4210/xlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingleton.h
More file actions
51 lines (41 loc) · 1.16 KB
/
singleton.h
File metadata and controls
51 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*!
\file singleton.h
\brief singleton.h定义了单例模版类,来自于boost库,做了微小变动
- \b 2012-09-18 从boost中抄袭过来,做些微小变动,某些限制参考boost说明
- \b 修改 by \b triones
\version 1.0.1209.1809
\note Only For Ring3
\author boost
\date 2012-09-18
*/
#pragma once
#include "xlib_base.h"
template <typename T>
struct singleton_default
{
private:
struct obj_creator
{
obj_creator() { singleton_default<T>::instance(); }
inline void do_nothing() const { }
};
static obj_creator create_object;
singleton_default();
public:
typedef T object_type;
static object_type & instance()
{
static object_type obj;
create_object.do_nothing();
return obj;
}
};
template <typename T>
typename singleton_default<T>::obj_creator singleton_default<T>::create_object;
//! 模版函数使取实例操作更方便
template <typename T> T& singleton()
{
return singleton_default<T>::instance();
}
//! 宏使得类初始化函数可以不为public,以避免误初始化
#define use_singleton(T) friend singleton_default<T>