コード例 #1
0
	bool ProfiledBoundObject::Equals(KObjectRef other)
	{
		AutoPtr<ProfiledBoundObject> pother = other.cast<ProfiledBoundObject>();
		if (!pother.isNull())
			other = pother->GetDelegate();

		return other.get() == this->GetDelegate().get();
	}
コード例 #2
0
ファイル: kobject.cpp プロジェクト: toisoftware/TideSDK
bool KObject::Equals(KObjectRef other)
{
    return other.get() == this;
}