How do I convert from std::stringstream to std::string in C++?
std::stringstream
std::string
Do I need to call a method on the string stream?
From memory, you call stringstream::str() to get the std::string value out.
stringstream::str()