#include #include #ifndef FILEDATA_H #define FILEDATA_H struct FileData { QString path; QString hash; bool operator==(const FileData& other)const{ if(this->path==(other.path) && this->hash == other.hash) return true; return false; } }; //путь struct SAttribute { QString name; QString value; }; struct SXmlAnswerTag{ QString elementName; QList attr; }; #endif // FILEDATA_H