2021-07-27 01:14:11 +05:30
|
|
|
#pragma once
|
|
|
|
#include "AuthContext.h"
|
|
|
|
|
|
|
|
class MSAInteractive : public AuthContext
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-11-20 20:52:22 +05:30
|
|
|
explicit MSAInteractive(
|
|
|
|
AccountData *data,
|
|
|
|
QObject *parent = 0
|
|
|
|
);
|
2021-07-27 01:14:11 +05:30
|
|
|
void executeTask() override;
|
|
|
|
};
|