Reorganize all the screenshot files
This commit is contained in:
15
logic/screenshots/Screenshot.h
Normal file
15
logic/screenshots/Screenshot.h
Normal 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;
|
Reference in New Issue
Block a user