Constructors
Declared in <flatfile.h>
Constructs a null position (file index -1, offset 0).
constexpr
FlatFilePos() = default;
» more...
Constructs a position from a file index and byte offset.
FlatFilePos(
int32_t nFileIn,
uint32_t nPosIn);
» more...
| Name | Description |
|---|---|
| nFileIn | The flat file index. |
| nPosIn | The byte offset within the file. |