AusweisApp2
Lade ...
Suche ...
Keine Treffer
StateConnectCard.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include "AbstractState.h"
10
11class test_StateConnectCard;
12
13namespace governikus
14{
15
17 : public AbstractState
18 , public GenericContextContainer<WorkflowContext>
19{
20 Q_OBJECT
21 friend class StateBuilder;
22 friend class ::test_StateConnectCard;
23
24 private:
25 explicit StateConnectCard(const QSharedPointer<WorkflowContext>& pContext);
26 void run() override;
27
28 private Q_SLOTS:
29 void onCardInserted();
30 void onCommandDone(QSharedPointer<CreateCardConnectionCommand> pCommand);
31 void onReaderRemoved(const ReaderInfo& pInfo);
32 void onReaderStatusChanged(const ReaderManagerPlugInInfo& pInfo);
33
34 public:
35 void onEntry(QEvent* pEvent) override;
36
37 Q_SIGNALS:
38 void fireRetry();
39
40};
41
42} // namespace governikus
Definition: AbstractState.h:23
Definition: GenericContextContainer.h:22
Definition: ReaderInfo.h:18
Definition: StateBuilder.h:20
Definition: StateConnectCard.h:19
void onEntry(QEvent *pEvent) override
Definition: StateConnectCard.cpp:132
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16