Files
RRJServer/InstructorsAndTrainees/connectorToServer/Core/FileData.h
semenov 71215cf5ec bugfix: versions
* refactoring call update after update from client
* refactoring common client deAuth
* add packet for notify hash calculate start
* bugfix update static data
2025-07-23 12:32:38 +03:00

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