How to force std::stringstream operator >> to read an entire string instead of stopping at the first whitespace?
I\'ve got a template class that stores a value read
Where do you want it to stop? If you want to read a whole line you probably need getline function, if you need an entire string stored in the streamstring object your choise is ostringstream::str method.