summaryrefslogtreecommitdiffstats
path: root/logic/screenshots/Screenshot.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-02-25 00:51:24 +0100
committerPetr Mrázek <peterix@gmail.com>2014-02-25 00:51:24 +0100
commitcb5cfe724208beb7d506868fc4e50d9f13e28a53 (patch)
tree527bfd30ef74d5edef055ae6b4258dd2526162d8 /logic/screenshots/Screenshot.h
parentb1cddb4600db2aa54c9d274466b393fc1e03eba9 (diff)
downloadMultiMC-cb5cfe724208beb7d506868fc4e50d9f13e28a53.tar
MultiMC-cb5cfe724208beb7d506868fc4e50d9f13e28a53.tar.gz
MultiMC-cb5cfe724208beb7d506868fc4e50d9f13e28a53.tar.lz
MultiMC-cb5cfe724208beb7d506868fc4e50d9f13e28a53.tar.xz
MultiMC-cb5cfe724208beb7d506868fc4e50d9f13e28a53.zip
Reorganize all the screenshot files
Diffstat (limited to 'logic/screenshots/Screenshot.h')
-rw-r--r--logic/screenshots/Screenshot.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/logic/screenshots/Screenshot.h b/logic/screenshots/Screenshot.h
new file mode 100644
index 00000000..194e70e5
--- /dev/null
+++ b/logic/screenshots/Screenshot.h
@@ -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;