2014-02-25 05:21:24 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QString>
|
2014-06-28 20:37:08 +05:30
|
|
|
#include <QFileInfo>
|
2014-02-25 05:21:24 +05:30
|
|
|
#include <memory>
|
|
|
|
|
2021-11-22 03:51:12 +05:30
|
|
|
struct ScreenShot {
|
|
|
|
using Ptr = std::shared_ptr<ScreenShot>;
|
|
|
|
|
|
|
|
ScreenShot(QFileInfo file) {
|
2018-07-15 18:21:05 +05:30
|
|
|
m_file = file;
|
|
|
|
}
|
|
|
|
QFileInfo m_file;
|
|
|
|
QString m_url;
|
|
|
|
QString m_imgurId;
|
|
|
|
QString m_imgurDeleteHash;
|
2014-02-25 05:21:24 +05:30
|
|
|
};
|