|
hamigaki::archivers::iso::date_time —
struct date_time { // construct/copy/destruct date_time(); // queries bool empty() const; // conversions boost::optional<filesystem::timestamp> to_timestamp() const; static date_time from_timestamp(const filesystem::timestamp&); char year[4]; char month[2]; char day[2]; char hour[2]; char minute[2]; char second[2]; char centisecond[2]; boost::int8_t timezone; };
| メンバ変数 | 意味 |
|---|---|
| year | 年 |
| month | 月 |
| day | 日 |
| hour | 時 |
| minute | 分 |
| second | 秒 |
| centisecond | 1/100秒 |
| timezone | タイムゾーンオフセット (1/4時間単位) |
date_time conversionsboost::optional<filesystem::timestamp> to_timestamp() const;
| Returns: | date_timeの保持する時間をtimestampで表現した値 |
static date_time from_timestamp(const filesystem::timestamp& ts);
| Returns: | tsの保持する時間を表現するdate_time |
| 製作著作 © 2006-2008 Takeshi Mouri |