blob: afff38f84acdc4db28506e31aae70b62b125aa8f (
plain)
1
2
3
4
5
6
7
|
#include "util.h"
#include "strings.h"
bool by_name_case_insensitive::operator () (Object * object) {
return str_lower(object->get_name().c_str()) == str_lower(this->target_name);
}
|