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