Hi,
is unget possible with QTextStream?
How does one go about peek'ing or unget'ing stuff?
Use-case: read either a string of a number from a steam.
How: read a character (is >> ws >> ch) and if it is a number (i.e. isdigit(ch) == true), unget it and read into an int (is >> number)
Possible?
Thanks.