FlatFilePos::FlatFilePos

Constructors

Synopses

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...

Parameters

NameDescription
nFileInThe flat file index.
nPosInThe byte offset within the file.