aboutsummaryrefslogtreecommitdiff
path: root/launcher/screenshots/Screenshot.h
blob: ca45aabff12f2b8fe0c2c62313eff21c16db303c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <QDateTime>
#include <QString>
#include <QFileInfo>
#include <memory>

struct ScreenShot {
    using Ptr = std::shared_ptr<ScreenShot>;

    ScreenShot(QFileInfo file) {
        m_file = file;
    }
    QFileInfo m_file;
    QString m_url;
    QString m_imgurId;
    QString m_imgurDeleteHash;
};