AusweisApp2
StateInsertCard.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
9 #include "states/AbstractState.h"
11 
12 #include <QSharedPointer>
13 
14 
15 namespace governikus
16 {
17 
19  : public AbstractState
20  , public GenericContextContainer<PersonalizationContext>
21 {
22  Q_OBJECT
23  friend class StateBuilder;
24 
25  private:
26  explicit StateInsertCard(const QSharedPointer<WorkflowContext>& pContext);
27  void run() override;
28 
29  private Q_SLOTS:
30  void onCardInfoChanged(const ReaderInfo& pInfo);
31  void onStatusChanged(const ReaderManagerPlugInInfo& pInfo);
32 };
33 
34 } // namespace governikus
Definition: AbstractState.h:20
Definition: GenericContextContainer.h:20
Definition: ReaderInfo.h:18
Definition: StateBuilder.h:18
Definition: StateInsertCard.h:21
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16