std::string CFile::GetLine()
{
std::string line;
std::getline(this->file, line, '/n'); // Error is here
}

I cannot get the above to work, any ideas why?
this->file is an fstream.

From the looks of the debug, it looks like getline won't accept an fstream?

huge thanks