AusweisApp2
StateVerifyRetryCounter.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
7 #include "AbstractState.h"
10 
11 
12 namespace governikus
13 {
14 
16  : public AbstractState
17  , public GenericContextContainer<WorkflowContext>
18 {
19  Q_OBJECT
20  friend class StateBuilder;
21 
22  explicit StateVerifyRetryCounter(const QSharedPointer<WorkflowContext>& pContext);
23  virtual void run() override;
24 
25  Q_SIGNALS:
26  void fireEnterPacePassword();
28 };
29 
30 } // namespace governikus
Definition: AbstractState.h:18
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:14
Definition: GenericContextContainer.h:19
Definition: StateVerifyRetryCounter.h:15
Definition: StateBuilder.h:17