pollymc/launcher/screenshots/Screenshot.h

19 lines
320 B
C
Raw Normal View History

2014-02-25 05:21:24 +05:30
#pragma once
#include <QDateTime>
#include <QString>
#include <QFileInfo>
2014-02-25 05:21:24 +05:30
#include <memory>
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
};