-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcallback.h
61 lines (51 loc) · 1.08 KB
/
callback.h
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
52
53
54
55
56
57
58
59
60
61
#ifndef CALLBACK_H
#define CALLBACK_H
#include <vector>
#include <iostream>
#include "eventbase.h"
//反应槽基类
class slotbase
{
public:
virtual void Execute(Event ev) = 0;
};
//T类型的类,成员函数的变量时Event类型
template<typename T>
class slotimpl : public slotbase
{
public:
using member_function = void (T::*)(Event); //起类型别名,using等价typedef
slotimpl(T* pObj, member_function pMemberFunc)
{
m_pObj = pObj;
m_pMemberFunc = pMemberFunc;
}
inline void Execute(Event ev) override
{
(m_pObj->*m_pMemberFunc)(ev);
}
private:
T* m_pObj;
member_function m_pMemberFunc;
};
//回调类
class CallBack
{
public:
template<typename T>
CallBack(T* pObj, void (T::*pMemberFunc)(Event))
{
m_pSlotbase = new slotimpl<T>(pObj, pMemberFunc); //T类型对象,成员函数指针
}
~CallBack()
{
delete m_pSlotbase;
}
inline void Execute(Event ev)
{
m_pSlotbase->Execute(ev);
}
private:
slotbase* m_pSlotbase;
};
#endif // CALLBACK_H