.TH "Vector::BLF::RestorePoints" 3 "Vector BLF" \" -*- nroff -*- .ad l .nh .SH NAME Vector::BLF::RestorePoints .SH SYNOPSIS .br .PP .PP \fR#include \fP .SS "Public Member Functions" .in +1c .ti -1c .RI "virtual void \fBread\fP (\fBAbstractFile\fP &is)" .br .ti -1c .RI "virtual void \fBwrite\fP (\fBAbstractFile\fP &os)" .br .ti -1c .RI "virtual uint32_t \fBcalculateObjectSize\fP () const" .br .in -1c .SS "Public Attributes" .in +1c .ti -1c .RI "uint32_t \fBobjectSize\fP {0x00180008}" .br .ti -1c .RI "uint32_t \fBobjectInterval\fP {1000}" .br .ti -1c .RI "std::vector< \fBRestorePoint\fP > \fBrestorePoints\fP {}" .br .in -1c .SH "Detailed Description" .PP List of restore points\&. .PP \fBNote\fP .RS 4 This class is based on observations, as there is no public documentation available\&. There are undocumented API functions for \fBRestorePoint\fP handling\&. And this seems like it\&. .RE .PP .SH "Member Function Documentation" .PP .SS "uint32_t Vector::BLF::RestorePoints::calculateObjectSize () const\fR [virtual]\fP" Calculates the objectSize .PP \fBReturns\fP .RS 4 object size .RE .PP .SS "void Vector::BLF::RestorePoints::read (\fBAbstractFile\fP & is)\fR [virtual]\fP" Read the data of this object .PP \fBParameters\fP .RS 4 \fIis\fP input stream .RE .PP .SS "void Vector::BLF::RestorePoints::write (\fBAbstractFile\fP & os)\fR [virtual]\fP" Write the data of this object .PP \fBParameters\fP .RS 4 \fIos\fP output stream .RE .PP .SH "Member Data Documentation" .PP .SS "uint32_t Vector::BLF::RestorePoints::objectInterval {1000}" object interval .PP This is the interval between \fBRestorePoints\fP\&. Actually, due to a bug in the implementation, the interval is actually objectInterval + 1; Default is 1000, so it's storing a list, which point to each 1001stth object\&. .SS "uint32_t Vector::BLF::RestorePoints::objectSize {0x00180008}" .PP \fBTodo\fP .RS 4 Is this the maximum byte size of the restorePoints vector? .RE .PP .PP Not sure with this\&. .PP objectSize is usually 0x00180008=1572872\&. Reduced by sizeof(objectSize) + sizeof(objectInterval) lefts 1572864 bytes for restorePoints\&. Each \fBRestorePoint\fP has 24 bytes, which would result in 65536 elements\&. Seems like a potential maximum for the \fBRestorePoints\fP\&. But why does this need to be stored in the file? .PP Actually restorePointData\&.size() in this example, was just 20936, based on available data, which is 502464 bytes\&. So I would have expected to see objectSize=502472\&. .SS "std::vector<\fBRestorePoint\fP> Vector::BLF::RestorePoints::restorePoints {}" Restore Points .SH "Author" .PP Generated automatically by Doxygen for Vector BLF from the source code\&.