summaryrefslogtreecommitdiffstats
path: root/api/logic/screenshots/Screenshot.h
blob: b48cbe9990eaac5d96d1f1be95004465f07006e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;