Function CSPPtr<T>::operator ==()
Description:
Compares a pointer with the contained pointer.
 |
Prototype:
bool operator ==(const T* p) const;
Arguments:
- const T* p [IN]
The pointer to compare.
Return value:
If the two pointers are identical, it returns true. Otherwise, it returns false.
See also:
member function operator != ()
|
|