|
Maps SDK for C++ 1.0.0
|
Defines a timezone result. More...


Public Member Functions | |
| TimezoneResult ()=default | |
| Default constructor. | |
| TimezoneResult (const TimezoneResult &)=default | |
| Default copy constructor. | |
| TimezoneResult (TimezoneResult &&) noexcept=default | |
| Default move constructor noexcept is deduced. | |
| TimezoneResult & | operator= (const TimezoneResult &other)=default |
| Default copy assignment. | |
| TimezoneResult & | operator= (TimezoneResult &&other) noexcept=default |
| Default move assignment noexcept is deduced. | |
| bool | operator== (TimezoneResult const &timezoneResult) const |
| Compare if two TimezoneResult objects are equal. | |
| bool | operator!= (TimezoneResult const &timezoneResult) const |
| Compare if two TimezoneResult objects are not equal. | |
| int | getDstOffset () const noexcept |
| Get DST offset. | |
| int | getOffset () const noexcept |
| Get the offset including DST. | |
| int | getUtcOffset () const noexcept |
| Get the offset without DST. | |
| ETZStatus | getStatus () const noexcept |
| Get the status of the response. | |
| const StringRef | getTimezoneId () const noexcept |
| Get the ID of the timezone. | |
| Time | getLocalTime () const noexcept |
| Get the local time. | |
Defines a timezone result.
Implements share-read / copy-on-write Api object over ITimezoneResult.
|
inlinenoexcept |
Get DST offset.
|
inlinenoexcept |
Get the local time.
|
inlinenoexcept |
Get the offset including DST.
|
inlinenoexcept |
|
inlinenoexcept |
Get the ID of the timezone.
|
inlinenoexcept |
Get the offset without DST.
|
inline |
Compare if two TimezoneResult objects are not equal.
| timezoneResult | The TimezoneResult object to compare with |
|
default |
Default copy assignment.
| other | The TimezoneResult object to copy |
|
defaultnoexcept |
Default move assignment noexcept is deduced.
| other | The TimezoneResult object to move |
|
inline |
Compare if two TimezoneResult objects are equal.
| timezoneResult | The TimezoneResult object to compare with |