#pragma once #include #include #include #include #include using namespace std; using namespace stdext; class CityGrouper { public: // this function should allow the user to load an input text file CityGrouper(string InputFileName); // this function should perform grouping and print the output void GroupCitiesByCountry(); // other member functions and private data stores private: set countries; hash_multimap country2city; };