Error 9 error C2248: 'std::basic_ios<_Elem,_Traits>::basic_ios' : cannot access private member declared in class 'std::basic_ios<_Elem,_Traits>'
12345678910
#include <iostream> #include <fstream> #include "RouteMap.h" using namespace std; int main(){ string filename = "BultMap.txt"; ifstream filez(filename); RouteMap theMap(filez); cout << "The file map looks like this:" << endl << theMap << endl;