I'm trying to create a map of two different classes, but can't seem to set a value to a key. Here's my code:
#include <map>
#include <string>
#include <vector>
#include <iostream>
using namespace std;
class Student {
public:
Student(const string& si, const vector <string>& c) ...