Timezone information
More...
#include <cc/Timezone>
|
| Timezone ()=default |
| Create a null timezone file.
|
|
| Timezone (const String &data) |
| Load timezone information from data (RFC 8536 format)
|
|
long | count () const |
| Number of time information entries
|
|
const TimeInfo & | at (long i) const |
| Get time information entry at i.
|
|
const TimeInfo & | operator[] (long i) const |
| Get time information entry at i.
|
|
const TimeInfo & | infoForTime (double time) const |
| Get time zone information for time.
|
|
int | operator() (double time) const |
| Get UTF offset for time.
|
|
| Object ()=default |
| Create a null object.
|
|
| operator bool () const |
| Check if this is a non-null object.
|
|
bool | isNull () const |
| Check if this is a null object.
|
|
template<class T > |
bool | is () const |
| Check if this object is of type T.
|
|
template<class T > |
T | as () const |
| Cast this object to type T.
|
|
bool | isWeak () const |
| Check if the underlying object reference is weak.
|
|
bool | operator== (const Object &other) const |
| Equality operator.
|
|
std::strong_ordering | operator<=> (const Object &other) const |
| Ordering operator.
|
|
long | useCount () const |
| Reference count.
|
|
|
template<class T > |
T | weak () const |
|
template<class T > |
void | initOnce () |
| Create the object state when called the first time.
|
|
template<class T > |
void | initOncePerThread () |
| Create a distinct object state for each thread when called the first time in that thread.
|
|
| Object (State *newState) |
| Initialize object with newState.
|
|
| Object (State *state, Alias) |
|
| Object (State *state, Weak) |
|
Object & | operator= (std::nullptr_t) |
|
template<class T > |
static T | alias (const State *state) |
| Create an alias object for the given state.
|
|
template<class T > |
static T | weak (const State *state) |
|
Handle< State > | me |
| Internal object state
|
|
Timezone information
- See also
- Date
◆ Item
Timezone information record
◆ Timezone() [1/2]
Create a null timezone file.
◆ Timezone() [2/2]
Load timezone information from data (RFC 8536 format)
- Exceptions
-
◆ local()
Get local timezone information.
◆ offset()
static int offset |
( |
double | time | ) |
|
|
static |
Get the local UTC offset for time (in seconds)
◆ date()
static Date date |
( |
double | time | ) |
|
|
static |
Create the local calendar date by breaking down time.
◆ currentDate()
Create the local calendar date of the current system time.
◆ nextTime()
double nextTime |
( |
const Date & | date, |
|
|
int | hour, |
|
|
int | minutes = 0, |
|
|
int | seconds = 0 ) |
|
static |
Get the next time matching the given day time.
- Parameters
-
date | Date in the local timezone. |
hour | Hour of the day (0..23) |
minutes | Minutes (0..60) |
seconds | Seconds (0..60) |
- Returns
- The next time the local time hits the given day time
This method computes the next time at which the local time hits the giving hour, minutes and seconds. The local timezone and eventual change in daylight saving time is taken into account.
◆ loadFromFile()
Load timezone information from path.
- Exceptions
-
◆ count()
Number of time information entries
◆ at()
Get time information entry at i.
◆ operator[]()
const TimeInfo & operator[] |
( |
long | i | ) |
const |
Get time information entry at i.
◆ infoForTime()
const TimeInfo & infoForTime |
( |
double | time | ) |
const |
Get time zone information for time.
◆ operator()()
int operator() |
( |
double | time | ) |
const |