Ho provato è se inserisco io i valori nell' vector il tutto funziona
vector<string> readfile(string filename) {
fstream my_file;
vector<string> CFs;
my_file.open(filename, ios::in);
if (!my_file) {
cout << "FILE NON TROVATO ERRORE"<<endl;
}
else {
string tp;
while (getline(my_file, tp)) { //read data from file object and put it into string.
//cout << tp << "\n"; //print the data of the string
CFs.push_back(tp);
}
}
my_file.close();
return CFs;
}
il file lo leggo in questo modo
come potrei cambiare la prima funzione?
scusate l'ignoranza!