blob: 6654e0d67c3a3d0d82eacd7dae2e3624a0687dea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "AuthContext.h"
class MSAInteractive : public AuthContext
{
Q_OBJECT
public:
explicit MSAInteractive(
AccountData *data,
QObject *parent = 0
);
void executeTask() override;
};
|