28    return (ptr1 && ptr2 && (*ptr1 == *ptr2));
 
 
   43    return ((!ptr1 && !ptr2) || 
equalValues(ptr1, ptr2));
 
 
bool nullOrEqualValues(const T &ptr1, const T &ptr2)
This function checks if two pointers are both null or both are non-null and they point to equal value...
bool equalValues(const T &ptr1, const T &ptr2)
This function checks if two pointers are non-null and values are equal.
Defines the logger used by the top-level component of kea-lfc.