ewmscp  ..
Public Member Functions | List of all members
copyRequest::base::pointerCompare Class Reference

#include <copyRequest.h>

Public Member Functions

bool operator() (const base *lhs, const base *rhs) const
 

Detailed Description

Definition at line 405 of file copyRequest.h.

Member Function Documentation

◆ operator()()

bool copyRequest::base::pointerCompare::operator() ( const base lhs,
const base rhs 
) const
inline

Definition at line 407 of file copyRequest.h.

408  {
409  if (lhs == nullptr) {
410  return false;
411  }
412  if (rhs == nullptr) {
413  return true;
414  }
415  return lhs->compare(*rhs);
416  }

References copyRequest::base::compare().

Here is the call graph for this function:

The documentation for this class was generated from the following file: