#include #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