Added operator == for DrapePointer

This commit is contained in:
Roman Sorokin 2014-08-20 16:36:06 +03:00 committed by Alex Zolotarev
parent db057d1443
commit c48c250bfa

View file

@ -80,6 +80,11 @@ class DrapePointer
public:
DrapePointer() : m_p(NULL) { SET_CHECK_FLAG(true); }
bool operator==(DrapePointer<T> const & other) const
{
return m_p == other.m_p;
}
protected:
DrapePointer(T * p, bool needDestroyedCheck = true)
: m_p(p)