-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomptr.h
59 lines (48 loc) · 1.21 KB
/
comptr.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
#pragma once
namespace Framework
{
// Auto-releasing wrapper for COM pointers
template <typename T>
struct comptr
{
T * p;
comptr(): p(nullptr) {}
comptr(T * other): p(other)
{ if (p) p->AddRef(); }
comptr(const comptr<T> & other): p(other.p)
{ if (p) p->AddRef(); }
comptr(comptr<T> && other): p(other.p)
{ other.p = nullptr; }
void release()
{ if (p) { p->Release(); p = nullptr; } }
~comptr()
{ release(); }
comptr<T> & operator = (T * other)
{ release(); p = other; if (p) p->AddRef(); return *this; }
comptr<T> & operator = (const comptr<T> & other)
{ release(); p = other.p; if (p) p->AddRef(); return *this; }
comptr<T> & operator = (comptr<T> && other)
{ release(); p = other.p; other.p = nullptr; return *this; }
T ** operator & () { return &p; }
T * operator * () { return p; }
T * operator -> () { return p; }
operator T * () { return p; }
};
// Reference counting mixin functionality that's interface-compatible with COM
struct RefCount
{
int m_cRef;
RefCount(): m_cRef(0) {}
virtual ~RefCount() { ASSERT_ERR(m_cRef == 0); }
void AddRef()
{
++m_cRef;
}
void Release()
{
--m_cRef;
if (m_cRef == 0)
delete this;
}
};
}