class DistanceToCity { public: DistanceToCity(string n, int d); string name; int distance; bool operator<(const DistanceToCity& right) const; };