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