Time Shield Library
C++ library for working with time
|
Structure to represent time zone information. More...
#include <time_zone_struct.hpp>
Public Attributes | |
int | hour |
Hour component of time (0-23) | |
int | min |
Minute component of time (0-59) | |
bool | is_positive |
True if the time zone offset is positive, false if negative. | |
Structure to represent time zone information.
Structure to represent a time zone offset in MQL5.
This structure contains the hour and minute components of a time zone offset, as well as a boolean indicating whether the offset is positive or negative.
Definition at line 20 of file time_zone_struct.hpp.
int time_shield::TimeZoneStruct::hour |
Hour component of time (0-23)
Hour component of the offset (0-23)
Definition at line 21 of file time_zone_struct.hpp.
bool time_shield::TimeZoneStruct::is_positive |
True if the time zone offset is positive, false if negative.
True if the offset is positive, false if negative.
Definition at line 23 of file time_zone_struct.hpp.
int time_shield::TimeZoneStruct::min |
Minute component of time (0-59)
Minute component of the offset (0-59)
Definition at line 22 of file time_zone_struct.hpp.