I am using code from The c++ standard library from scratch, I wanted to use getline instead of just typing it directly into the testfile..however I run into
unresolved overloaded function.
I appreciate the help. I included the header and implementation file along with the testfile.
std::getline() requires an input stream and a std::string. You supplied std::cin (correct) and class functions (incorrect). Class functions that require a string as input.