Encode timestamp from UNIX datetime structure
| 339 | |
| 340 | // Encode timestamp from UNIX datetime structure |
| 341 | void NoThrowTimeStamp::encode(const struct tm* times, int fractions) |
| 342 | { |
| 343 | mValue = encode_timestamp(times, fractions); |
| 344 | } |
| 345 | |
| 346 | // Decode timestamp into UNIX datetime structure |
| 347 | void NoThrowTimeStamp::decode(struct tm* times, int* fractions) const |
no test coverage detected