pollymc/logic/screenshots/Screenshot.h

16 lines
217 B
C
Raw Normal View History

2014-02-25 05:21:24 +05:30
#pragma once
#include <QDateTime>
#include <QString>
#include <memory>
struct ScreenShot
{
QDateTime timestamp;
QString file;
QString url;
QString imgurId;
};
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;