AusweisApp
 
Lade ...
Suche ...
Keine Treffer
StateSendWhitelistSurvey.h
gehe zur Dokumentation dieser Datei
1
4
5/*
6 * \brief Allows the user to send a survey after a successful authentication
7 * on Android.
8 */
9
10#pragma once
11
12#include "AbstractState.h"
14#include "context/AuthContext.h"
15
16#include <QSharedPointer>
17
18
19class test_StateSendWhitelistSurvey;
20
21
22namespace governikus
23{
24class StateSendWhitelistSurvey
25 : public AbstractState
26 , public GenericContextContainer<AuthContext>
27{
28 Q_OBJECT
29 friend class StateBuilder;
30 friend class ::test_StateSendWhitelistSurvey;
31
32 private:
33 explicit StateSendWhitelistSurvey(const QSharedPointer<WorkflowContext>& pContext);
34 void run() override;
35};
36
37} // namespace governikus
AbstractState(const QSharedPointer< WorkflowContext > &pContext)
Definition AbstractState.cpp:22
GenericContextContainer(const QSharedPointer< WorkflowContext > &pContext)
Definition GenericContextContainer.h:27
friend class StateBuilder
Definition StateSendWhitelistSurvey.h:29
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:17