mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
21 lines
282 B
C
21 lines
282 B
C
#include <QString>
|
|
|
|
#ifndef FILEDATA_H
|
|
#define FILEDATA_H
|
|
|
|
struct FileData
|
|
{
|
|
QString path;
|
|
QString hash;
|
|
|
|
bool operator==(const FileData& other)const{
|
|
if(this->path==(other.path)) return true;
|
|
return false;
|
|
}
|
|
|
|
}; //путь
|
|
|
|
|
|
#endif // FILEDATA_H
|
|
|