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