AusweisApp2
Lade ...
Suche ...
Keine Treffer
CompositeStatePace.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include <QSharedPointer>
8#include <QState>
9
10
11namespace governikus
12{
13
14class WorkflowContext;
15
17 : public QState
18{
19 Q_OBJECT
20
21 const QSharedPointer<WorkflowContext> mContext;
22
23 public:
24 explicit CompositeStatePace(const QSharedPointer<WorkflowContext>& pContext);
25 ~CompositeStatePace() override = default;
26
27 Q_SIGNALS:
29 void fireAbort();
30};
31
32} // namespace governikus
Definition: CompositeStatePace.h:18
~CompositeStatePace() override=default
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:15