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