vector< cat > catSorter::SortCatsByAge(){
vector< cat > cats_copy = cats;
std::sort(cats_copy.begin(), cats_copy.end());
return cats_copy;
}
class cat {
public:
int age;
bool operator< (const cat &other) const {
return age < other.age;
}
};