Hi, just looking for a quick answer to my problem:
How can I read a string from a binary file?
for example
string buff;
binfile.read(reinterpret_cast<char*>(&buff), 10)
does not work. Doesn't work either if buff is declared as a c-style string.
I'd preferably like to read it into an STL string. Thanks.