Comparator for strings. More...
#include <string_compare_type.hpp>
Public Member Functions | |
bool | operator() (const char *a, const char *b) const |
Compare two strings. | |
bool | operator() (const char *a, const char *b) const |
Compare a to b using strcmp. |
Comparator for strings.
Simple string comparator using strcmp as implementation.
Definition at line 16 of file string_compare_type.hpp.
bool StringCompare::operator() | ( | const char * | a, | |
const char * | b | |||
) | const [inline] |
Compare a to b using strcmp.
a | string to compare. | |
b | string to compare. |
Definition at line 46 of file depend.cpp.
bool StringCompare::operator() | ( | const char * | a, | |
const char * | b | |||
) | const [inline] |
Compare two strings.
a | The first string. | |
b | The second string. |
Definition at line 23 of file string_compare_type.hpp.