| 273 | } |
| 274 | |
| 275 | std::string Path::LastModified() const { |
| 276 | QFileInfo file_info(this->AbsolutePath().c_str()); |
| 277 | |
| 278 | return file_info.lastModified().toString(Qt::ISODate).toStdString(); |
| 279 | } |
| 280 | |
| 281 | bool operator!=(const Path& a, const Path& b) { return !(a == b); } |
| 282 |
no test coverage detected