summaryrefslogtreecommitdiffstats
path: root/logic/screenshots/Screenshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/screenshots/Screenshot.h')
-rw-r--r--logic/screenshots/Screenshot.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/logic/screenshots/Screenshot.h b/logic/screenshots/Screenshot.h
new file mode 100644
index 00000000..815c0d47
--- /dev/null
+++ b/logic/screenshots/Screenshot.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <QDateTime>
+#include <QString>
+#include <memory>
+#include <QIcon>
+
+struct ScreenShot
+{
+ QIcon getImage();
+ QIcon m_image;
+ bool imageloaded = false;
+ QDateTime timestamp;
+ QString file;
+ QString url;
+ QString imgurId;
+};
+
+typedef std::shared_ptr<ScreenShot> ScreenshotPtr;