Reorganize all the screenshot files

This commit is contained in:
Petr Mrázek
2014-02-25 00:51:24 +01:00
parent b1cddb4600
commit cb5cfe7242
10 changed files with 60 additions and 49 deletions

View File

@ -0,0 +1,15 @@
#pragma once
#include <QDateTime>
#include <QString>
#include <memory>
struct ScreenShot
{
QDateTime timestamp;
QString file;
QString url;
QString imgurId;
};
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;