You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to support both seekg() and seekp(), a streambuf needs to implement both seekoff() and seekpos().
However, Poco::BasicMemoryStreamBuf currently only has seekoff().
Minimal working seekpos() implementation based on seekoff():
virtual pos_type seekpos(pos_type pos, std::ios_base::openmode which = std::ios_base::in | std::ios_base::out)
{
off_type off = pos;
return seekoff(off, std::ios::beg, which);
}