2014-02-24 23:51:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QString>
|
|
|
|
#include <memory>
|
2014-02-25 00:21:46 +00:00
|
|
|
#include <QIcon>
|
2014-02-24 23:51:24 +00:00
|
|
|
|
|
|
|
struct ScreenShot
|
|
|
|
{
|
2014-02-25 00:21:46 +00:00
|
|
|
QIcon getImage();
|
|
|
|
QIcon m_image;
|
|
|
|
bool imageloaded = false;
|
2014-02-24 23:51:24 +00:00
|
|
|
QDateTime timestamp;
|
|
|
|
QString file;
|
|
|
|
QString url;
|
|
|
|
QString imgurId;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;
|