AusweisApp2
StateCheckApplet.h
gehe zur Dokumentation dieser Datei
1 
7 #pragma once
8 
10 #include "states/AbstractState.h"
12 
13 #include <QVariant>
14 
15 
16 class test_StateCheckApplet;
17 
18 
19 namespace governikus
20 {
21 
23  : public AbstractState
24  , public GenericContextContainer<PersonalizationContext>
25 {
26  Q_OBJECT
27  friend class StateBuilder;
28  friend class ::test_StateCheckApplet;
29 
30  private:
31  explicit StateCheckApplet(const QSharedPointer<WorkflowContext>& pContext);
32  void run() override;
33 
34  private Q_SLOTS:
35  void onCommandDone(const QVariant& pResult);
36 
37  Q_SIGNALS:
39 
40 };
41 
42 } // namespace governikus
Definition: AbstractState.h:20
Definition: GenericContextContainer.h:20
Definition: StateBuilder.h:18
Definition: StateCheckApplet.h:25
A simple template renderer.
Definition: ActivationContext.h:15