git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@598 f6dd340e-d3f9-0310-b409-bdd246841980
This commit is contained in:
Frank B. Brokken 2011-11-07 17:04:51 +00:00
parent cd65123e3b
commit ca6b5ae7eb

View file

@ -5,15 +5,15 @@ where it must be possible to access the information in the database randomly.
The current position can be obtained and modified using the following members:
itemization(
ithtq(tellg)(ios::i(pos_type) tellg())
(the current (absolute) position in the file where the next
read-operation to the stream will take place is returned.)
ithtq(tellg)(ios::pos_type tellg())
(hi(pos_type)the stream's current (absolute) position where the
stream's next read-operation will take place is returned.)
ithtq(seekg)
(istream &seekg(ios::off_type step, ios::seekdir org))
(modifies a stream's actual position. The function expects an
ti(off_type) tt(step) representing the number of bytes the current stream
position is moved with respect to tt(org). The tt(step) value
may be negative, zero or positive.
position is moved with respect to tt(org). The tt(step) value may be negative,
zero or positive.
The origin of the step, tt(org) is a value in the
hi(seekdir)tt(ios::seekdir) enumeration.