PrismLauncher/logic/screenshots/Screenshot.h

20 lines
275 B
C
Raw Normal View History

2014-02-24 23:51:24 +00:00
#pragma once
#include <QDateTime>
#include <QString>
#include <QFileInfo>
2014-02-24 23:51:24 +00:00
#include <memory>
struct ScreenShot
{
ScreenShot(QFileInfo file)
{
m_file = file;
}
QFileInfo m_file;
QString m_url;
QString m_imgurId;
2014-02-24 23:51:24 +00:00
};
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;