pollymc/api/logic/screenshots/Screenshot.h

21 lines
303 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
{
ScreenShot(QFileInfo file)
{
m_file = file;
}
QFileInfo m_file;
QString m_url;
QString m_imgurId;
2017-05-05 02:28:22 +05:30
QString m_imgurDeleteHash;
2014-02-25 05:21:24 +05:30
};
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;