2014-02-24 23:51:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QString>
|
2014-06-28 16:07:08 +01:00
|
|
|
#include <QFileInfo>
|
2014-02-24 23:51:24 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
struct ScreenShot {
|
|
|
|
using Ptr = std::shared_ptr<ScreenShot>;
|
|
|
|
|
|
|
|
ScreenShot(QFileInfo file) {
|
2014-06-28 16:07:08 +01:00
|
|
|
m_file = file;
|
|
|
|
}
|
|
|
|
QFileInfo m_file;
|
|
|
|
QString m_url;
|
|
|
|
QString m_imgurId;
|
2017-05-04 21:58:22 +01:00
|
|
|
QString m_imgurDeleteHash;
|
2014-02-24 23:51:24 +00:00
|
|
|
};
|