NOISSUE continue refactoring things to make tests pass
This commit is contained in:
@ -5,10 +5,10 @@
|
||||
#include <QFileInfo>
|
||||
#include <memory>
|
||||
|
||||
struct ScreenShot
|
||||
{
|
||||
ScreenShot(QFileInfo file)
|
||||
{
|
||||
struct ScreenShot {
|
||||
using Ptr = std::shared_ptr<ScreenShot>;
|
||||
|
||||
ScreenShot(QFileInfo file) {
|
||||
m_file = file;
|
||||
}
|
||||
QFileInfo m_file;
|
||||
@ -16,5 +16,3 @@ struct ScreenShot
|
||||
QString m_imgurId;
|
||||
QString m_imgurDeleteHash;
|
||||
};
|
||||
|
||||
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;
|
||||
|
Reference in New Issue
Block a user