#include "NaiveCollisionChecker.h" #include "Museum.h" #include "People.h" #include "Artist.h" void NaiveCollisionChecker::check() { auto artists = this->museum.people.get_artists(); auto begin = artists.begin(); auto end = artists.end(); for (auto it1 = begin; it1 != end; ++it1) { auto it2 = it1; ++it2; for (; it2 != end; ++it2) { this->compare(**it1, **it2); } } }