bool ProfiledBoundObject::Equals(KObjectRef other)
	{
		AutoPtr<ProfiledBoundObject> pother = other.cast<ProfiledBoundObject>();
		if (!pother.isNull())
			other = pother->GetDelegate();

		return other.get() == this->GetDelegate().get();
	}
Exemple #2
0
bool KObject::Equals(KObjectRef other)
{
    return other.get() == this;
}