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