libstdc++
|
Public Member Functions | |
fpos (streamoff __off) | |
fpos (const fpos &)=default | |
operator streamoff () const | |
fpos | operator+ (streamoff __off) const |
fpos & | operator+= (streamoff __off) |
fpos | operator- (streamoff __off) const |
streamoff | operator- (const fpos &__other) const |
fpos & | operator-= (streamoff __off) |
fpos & | operator= (const fpos &)=default |
void | state (_StateT __st) |
_StateT | state () const |
Class representing stream positions.
The standard places no requirements upon the template parameter StateT. In this implementation StateT must be DefaultConstructible, CopyConstructible and Assignable. The standard only requires that fpos should contain a member of type StateT. In this implementation it also contains an offset stored as a signed integer.
StateT | Type passed to and returned from state(). |
Definition at line 112 of file postypes.h.
Construct position from offset.
Definition at line 133 of file postypes.h.
Convert to streamoff.
Definition at line 143 of file postypes.h.
Add position and offset.
Definition at line 184 of file postypes.h.
Add offset to this position.
Definition at line 160 of file postypes.h.
Subtract offset from position.
Definition at line 198 of file postypes.h.
|
inline |
Subtract position to return offset.
Definition at line 211 of file postypes.h.
Subtract offset from this position.
Definition at line 171 of file postypes.h.
|
inline |
Remember the value of st.
Definition at line 147 of file postypes.h.
|
inline |
Return the last set value of st.
Definition at line 152 of file postypes.h.