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