I want to use the std::streamoff and std::streamsize types without pulling a huge part of the iostream library. For now, I'm including the header. Is there a better way to proceed ?
std::streamoff
std::streamsize
They are defined in header
#include should be sufficient.
#include
For future reference, though the site is not perfect, cplusplus.com is enough if you want to know the exact header where something resides in. It's in the upper-right corner between the angle brackets, in this case.