CNodeRef copy constructor and assignment operator

This commit is contained in:
Patrick Strateman 2015-08-25 15:33:29 -07:00
parent dc81dd02a1
commit 69ee1aab00

View file

@ -782,6 +782,22 @@ public:
CNode& operator *() const {return *_pnode;};
CNode* operator ->() const {return _pnode;};
CNodeRef& operator =(const CNodeRef& other)
{
if (this != &other) {
_pnode->Release();
_pnode = other._pnode;
_pnode->AddRef();
}
return *this;
}
CNodeRef(const CNodeRef& other):
_pnode(other._pnode)
{
_pnode->AddRef();
}
private:
CNode *_pnode;
};