forked from organicmaps/organicmaps-tmp
Added operator == for DrapePointer
This commit is contained in:
parent
db057d1443
commit
c48c250bfa
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue