20 lines
296 B
C
Raw Normal View History

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