mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
33 lines
467 B
C
33 lines
467 B
C
#include <QList>
|
|
#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) && this->hash == other.hash) return true;
|
|
return false;
|
|
}
|
|
|
|
}; //путь
|
|
|
|
struct SAttribute
|
|
{
|
|
QString name;
|
|
QString value;
|
|
|
|
};
|
|
|
|
struct SXmlAnswerTag{
|
|
QString elementName;
|
|
QList<SAttribute> attr;
|
|
};
|
|
|
|
#endif // FILEDATA_H
|
|
|