mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
feat: load to server block
This commit is contained in:
@@ -13,6 +13,7 @@ public:
|
||||
this->viewName = viewName;
|
||||
this->createData = data;
|
||||
this->size = size;
|
||||
this->isChangeable = true;
|
||||
}
|
||||
~StreamingVersionData();
|
||||
|
||||
@@ -36,8 +37,15 @@ public:
|
||||
return size;
|
||||
}
|
||||
|
||||
bool getIsChangeable() const;
|
||||
void setIsChangeable(bool value);
|
||||
bool getIsChangeable() const
|
||||
{
|
||||
return isChangeable;
|
||||
}
|
||||
|
||||
void setIsChangeable(bool value)
|
||||
{
|
||||
isChangeable = value;
|
||||
}
|
||||
|
||||
private:
|
||||
QString absolutePath;
|
||||
@@ -48,13 +56,3 @@ private:
|
||||
};
|
||||
|
||||
#endif // STREAMINGVERSIONDATA_H
|
||||
|
||||
bool StreamingVersionData::getIsChangeable() const
|
||||
{
|
||||
return isChangeable;
|
||||
}
|
||||
|
||||
void StreamingVersionData::setIsChangeable(bool value)
|
||||
{
|
||||
isChangeable = value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user