| 141 | } |
| 142 | |
| 143 | bool DateTime::isNull() const |
| 144 | { |
| 145 | return Second == 0 && Minute == 0 && Hour == 0 && Day == 0 && Month == 0 && Year == 0 && DayofWeek == 0 && |
| 146 | Milliseconds == 0; |
| 147 | } |
| 148 | |
| 149 | bool DateTime::fromHttpDate(const String& httpDate, time_t& time) |
| 150 | { |
no outgoing calls
no test coverage detected