bugfix: diff update

This commit is contained in:
semenov
2025-01-17 11:10:34 +03:00
parent c339ec9580
commit 4b9ee1738a
5 changed files with 24 additions and 8 deletions

View File

@@ -14,6 +14,8 @@ enum PacketType
TYPE_XMLANSWER = 8,
TYPE_QT = 9,
TYPE_DISABLE = 11,
TYPE_UPDATE = 12,
TYPE_CHECK_VERSION = 13,
TYPE_FILESIZE = 20,
TYPE_XMLANSWER_MESSAGE_FOR_GUI = 90,

View File

@@ -36,11 +36,25 @@ public:
return size;
}
bool getIsChangeable() const;
void setIsChangeable(bool value);
private:
QString absolutePath;
QString viewName;
QDateTime createData;
bool isChangeable;
qint32 size;
};
#endif // STREAMINGVERSIONDATA_H
bool StreamingVersionData::getIsChangeable() const
{
return isChangeable;
}
void StreamingVersionData::setIsChangeable(bool value)
{
isChangeable = value;
}