blob: a385e19172618e664afaaa150a67e89f96fe739b (
plain)
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
62
63
64
65
66
67
68
69
70
71
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <IceUtil/Shared.h>
using namespace IceUtil;
//
// Flag constant used by the Shared class. Derived classes
// such as GCObject define more flag constants.
//
const unsigned char IceUtil::Shared::NoDelete = 1;
IceUtil::SimpleShared::SimpleShared() :
_ref(0),
_noDelete(false)
{
}
IceUtil::SimpleShared::SimpleShared(const SimpleShared&) :
_ref(0),
_noDelete(false)
{
}
IceUtil::SimpleShared::~SimpleShared()
{
// Out of line to avoid weak vtable
}
IceUtil::Shared::Shared() :
_ref(0),
_flags(0)
{
}
IceUtil::Shared::Shared(const Shared&) :
_ref(0),
_flags(0)
{
}
void
IceUtil::Shared::__incRef()
{
assert(_ref >= 0);
++_ref;
}
void
IceUtil::Shared::__decRef()
{
assert(_ref > 0);
if(--_ref == 0 && !(_flags & NoDelete))
{
delete this;
}
}
int
IceUtil::Shared::__getRef() const
{
return _ref;
}
void
IceUtil::Shared::__setNoDelete(bool b)
{
_flags = b ? (_flags | NoDelete) : (_flags & ~NoDelete);
}
|