| 2333 | } |
| 2334 | |
| 2335 | Time File::getLastModificationTime() const { int64 m, a, c; getFileTimesInternal (m, a, c); return Time (m); } |
| 2336 | Time File::getLastAccessTime() const { int64 m, a, c; getFileTimesInternal (m, a, c); return Time (a); } |
| 2337 | Time File::getCreationTime() const { int64 m, a, c; getFileTimesInternal (m, a, c); return Time (c); } |
| 2338 |
no outgoing calls
no test coverage detected