summaryrefslogtreecommitdiffstats
path: root/libraries/logic/screenshots/Screenshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/logic/screenshots/Screenshot.h')
-rw-r--r--libraries/logic/screenshots/Screenshot.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/libraries/logic/screenshots/Screenshot.h b/libraries/logic/screenshots/Screenshot.h
deleted file mode 100644
index b48cbe99..00000000
--- a/libraries/logic/screenshots/Screenshot.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include <QDateTime>
-#include <QString>
-#include <QFileInfo>
-#include <memory>
-
-struct ScreenShot
-{
- ScreenShot(QFileInfo file)
- {
- m_file = file;
- }
- QFileInfo m_file;
- QString m_url;
- QString m_imgurId;
-};
-
-typedef std::shared_ptr<ScreenShot> ScreenshotPtr;