AusweisApp2
StateUpdateRetryCounter.h
gehe zur Dokumentation dieser Datei
1 
8 #pragma once
9 
10 #include "AbstractState.h"
12 
13 class test_StateUpdateRetryCounter;
14 
15 namespace governikus
16 {
17 
19  : public AbstractState
20  , public GenericContextContainer<WorkflowContext>
21 {
22  Q_OBJECT
23  friend class StateBuilder;
24  friend class ::test_StateUpdateRetryCounter;
25 
26  explicit StateUpdateRetryCounter(const QSharedPointer<WorkflowContext>& pContext);
27  void run() override;
28 
29  private Q_SLOTS:
30  void onUpdateRetryCounterDone(QSharedPointer<BaseCardCommand> pCommand);
31 };
32 
33 } // namespace governikus
Definition: AbstractState.h:18
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:14
Definition: StateUpdateRetryCounter.h:18
Definition: GenericContextContainer.h:19
Definition: StateBuilder.h:17