ComPtr::operator== Operator
Indicates whether two ComPtr objects are equal.
bool operator==(
const ComPtr<T>& a,
const ComPtr<U>& b
);
bool operator==(
const ComPtr<T>& a,
decltype(__nullptr)
);
bool operator==(
decltype(__nullptr),
const ComPtr<T>& a
);
Parameters
a
A reference to a ComPtr object.b
A reference to another ComPtr object.
Return Value
The first operator yields true if object a is equal to object b; otherwise, false.
The second and third operators yield true if object a is equal to nullptr; otherwise, false.
Requirements
Header: client.h
Namespace: Microsoft::WRL