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