28 lines
422 B
C
Raw Permalink Normal View History

2023-06-20 14:35:02 -04:00
#pragma once
#include "AuthFlow.h"
class CustomRefresh : public AuthFlow
2023-06-20 14:35:02 -04:00
{
Q_OBJECT
public:
explicit CustomRefresh(
2023-06-20 14:35:02 -04:00
AccountData *data,
QObject *parent = 0
);
};
class CustomLogin : public AuthFlow
2023-06-20 14:35:02 -04:00
{
Q_OBJECT
public:
explicit CustomLogin(
2023-06-20 14:35:02 -04:00
AccountData *data,
QString password,
QString url,
QObject *parent = 0
);
private:
QString m_password;
};