Constructors
Synopses
Declared in <baltzo_zoneinfobinaryheader.h>
Create a ZoneinfoBinaryHeader object having the (default) attribute values: ` version() == 0 numIsGmt() == 0 numIsStd() == 0 numLeaps() == 0 numTransitions() == 0 numLocalTimeTypes() == 1 abbrevDataSize() == 1 `
Create a ZoneInfoBinaryHeader object with the same value as the specified original.
ZoneinfoBinaryHeader(ZoneinfoBinaryHeader const& original);
Create a ZoneinfoBinaryHeader having the specified version, numIsGmt, numIsStd, numLeaps, numTransitions, numLocalTimeTypes, and abbrevDataSize values. The behavior is undefined unless ('0' <= version && version <= '4'), `0 <= numIsGmt`, `0 <= numIsStd, 0 <= numLeaps, 0 <= numTransitions, 1 <= numLocalTimeTypes, and 1 <= abbrevDataSize.
ZoneinfoBinaryHeader(
char version,
int numIsGmt,
int numIsStd,
int numLeaps,
int numTransitions,
int numLocalTimeTypes,
int abbrevDataSize);
Created with MrDocs