stringbuf::seekoff
[virtual] [protected] streampos seekoff ( streamoff off, ios_base::seekdir way, ios_base::openmode which = ios_base::in | ios_base::out ); | stringbuf |
cplusplus.com |
Set position of internal position pointer.
Sets a new position from an offset value
(off) relative to a given direction (way) for the
position pointers specified by parameter which.
Parameters.
Return Value.
The new position value of the modified position pointer.
In case of error the value returned is an invalid position.
Basic template member declaration ( basic_stringbuf<charT,traits,Allocator> ):
typedef traits::pos_type pos_type; typedef traits::off_type off_type; pos_type seekoff (off_type off, ios_base::seekdir way, ios_base which = ios_base::in | ios_base::out ); |
See also.
streambuf::pubseekoff,
seekpos
stringbuf class