AusweisApp2
 Alle Klassen Namensbereiche Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Propertys Freundbeziehungen Makrodefinitionen
StateConnectCard.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
7 #include "AbstractGenericState.h"
9 
10 namespace governikus
11 {
12 
14  : public AbstractGenericState<WorkflowContext>
15 {
16  Q_OBJECT
17  friend class StateBuilder;
18 
19  StateConnectCard(const QSharedPointer<WorkflowContext>& pContext);
20  virtual void run() override;
21 
22  private Q_SLOTS:
23  void onCardInserted();
24  void onCommandDone(QSharedPointer<CreateCardConnectionCommand> pCommand);
25  void onReaderRemoved(const QString& pReaderName);
26  void onAbort();
27 
28  Q_SIGNALS:
29  void fireRetry();
30  void fireReaderRemoved();
31 
32 };
33 
34 } /* namespace governikus */
Definition: StateConnectCard.h:13
Definition: AbstractGenericState.h:21
Definition: StateBuilder.h:17