vector< cat > catSorter::SortCatsByAge(){ vector< cat > cats_copy = cats; std::sort(cats_copy.begin(), cats_copy.end()); return cats_copy; }