#ifndef STREAMINGVERSIONDATA_H #define STREAMINGVERSIONDATA_H #include #include class StreamingVersionData { public: StreamingVersionData(QString absoltePath,QString viewName,QDateTime data,qint32 size) { this->absolutePath = absoltePath; this->viewName = viewName; this->createData = data; this->size = size; this->isChangeable = true; } ~StreamingVersionData(); QString getAbsolutPath() const { return absolutePath; } QString getViewName() const { return viewName; } QDateTime getCreateData() const { return createData; } qint32 getSize() const { return size; } bool getIsChangeable() const { return isChangeable; } void setIsChangeable(bool value) { isChangeable = value; } private: QString absolutePath; QString viewName; QDateTime createData; bool isChangeable; qint32 size; }; #endif // STREAMINGVERSIONDATA_H