bool operator==(const School &school1, const School &school2) {
  return school1.GetName() == school2.GetName();
}
Exemple #2
0
bool alpha_by_school_name(const School& school1, const School& school2){
    return (school1.GetName()<school2.GetName());
}