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