AusweisApp2
Lade ...
Suche ...
Keine Treffer
FinalState.h
gehe zur Dokumentation dieser Datei
1
9
#pragma once
10
11
#include "
AbstractState.h
"
12
#include "
GenericContextContainer.h
"
13
14
namespace
governikus
15
{
16
17
class
FinalState
18
:
public
AbstractState
19
,
public
GenericContextContainer
<WorkflowContext>
20
{
21
Q_OBJECT
22
23
private
:
24
void
run()
override
;
25
26
protected
:
27
void
onEntry
(QEvent* pEvent)
override
28
{
29
getContext
()->setWorkflowFinished(
true
);
30
AbstractState::onEntry
(pEvent);
31
}
32
33
public
:
34
explicit
FinalState
(
const
QSharedPointer<WorkflowContext>& pContext)
35
:
AbstractState
(pContext)
36
,
GenericContextContainer
(pContext)
37
{
38
}
39
40
41
};
42
43
}
// namespace governikus
AbstractState.h
GenericContextContainer.h
governikus::AbstractState
Definition
AbstractState.h:23
governikus::AbstractState::onEntry
void onEntry(QEvent *pEvent) override
Definition
AbstractState.cpp:90
governikus::FinalState
Definition
FinalState.h:20
governikus::FinalState::FinalState
FinalState(const QSharedPointer< WorkflowContext > &pContext)
Definition
FinalState.h:34
governikus::FinalState::onEntry
void onEntry(QEvent *pEvent) override
Definition
FinalState.h:27
governikus::GenericContextContainer
Definition
GenericContextContainer.h:22
governikus::GenericContextContainer< WorkflowContext >::getContext
QSharedPointer< WorkflowContext > getContext() const
Definition
GenericContextContainer.h:34
governikus
Implementation of GeneralAuthenticate response APDUs.
Definition
CommandApdu.h:16
src
workflows
base
states
FinalState.h
Erzeugt von
1.9.8