AusweisApp
 
Lade ...
Suche ...
Keine Treffer
StateEstablishPaceChannel.h
gehe zur Dokumentation dieser Datei
1
4
9
10#pragma once
11
12#include "AbstractState.h"
15
16class test_StateEstablishPaceChannel;
17
18namespace governikus
19{
20
21class StateEstablishPaceChannel
22 : public AbstractState
23 , public GenericContextContainer<WorkflowContext>
24{
25 Q_OBJECT
26 friend class StateBuilder;
27 friend class ::test_StateEstablishPaceChannel;
28
29 private:
30 explicit StateEstablishPaceChannel(const QSharedPointer<WorkflowContext>& pContext);
31
32 PacePasswordId mPasswordId;
33
34 void run() override;
35 void onUserCancelled() override;
36
37 void handleNpaPosition(CardReturnCode pReturnCode) const;
38
39 private Q_SLOTS:
40 void onEstablishConnectionDone(QSharedPointer<BaseCardCommand> pCommand);
41
42 Q_SIGNALS:
50};
51
52} // namespace governikus
AbstractState(const QSharedPointer< WorkflowContext > &pContext)
Definition AbstractState.cpp:22
GenericContextContainer(const QSharedPointer< WorkflowContext > &pContext)
Definition GenericContextContainer.h:27
friend class StateBuilder
Definition StateEstablishPaceChannel.h:26
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:17