mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
47 lines
811 B
C++
47 lines
811 B
C++
#ifndef STREAMINGVERSIONDATA_H
|
|
#define STREAMINGVERSIONDATA_H
|
|
|
|
#include <QTime>
|
|
#include <QString>
|
|
|
|
class StreamingVersionData
|
|
{
|
|
public:
|
|
StreamingVersionData(QString absoltePath,QString viewName,QDateTime data,qint32 size)
|
|
{
|
|
this->absolutePath = absoltePath;
|
|
this->viewName = viewName;
|
|
this->createData = data;
|
|
this->size = size;
|
|
}
|
|
~StreamingVersionData();
|
|
|
|
QString getAbsolutPath() const
|
|
{
|
|
return absolutePath;
|
|
}
|
|
|
|
QString getViewName() const
|
|
{
|
|
return viewName;
|
|
}
|
|
|
|
QDateTime getCreateData() const
|
|
{
|
|
return createData;
|
|
}
|
|
|
|
qint32 getSize() const
|
|
{
|
|
return size;
|
|
}
|
|
|
|
private:
|
|
QString absolutePath;
|
|
QString viewName;
|
|
QDateTime createData;
|
|
qint32 size;
|
|
};
|
|
|
|
#endif // STREAMINGVERSIONDATA_H
|