AusweisApp
Lade ...
Suche ...
Keine Treffer
FinalState.h
gehe zur Dokumentation dieser Datei
1
9#pragma once
10
11#include "AbstractState.h"
13
14namespace governikus
15{
16
18 : public AbstractState
19 , public GenericContextContainer<WorkflowContext>
20{
22
23 private:
24 void run() override;
25
26 protected:
27 void onEntry(QEvent* pEvent) override
28 {
29 getContext()->setWorkflowFinished(true);
31 }
32
33 public:
39
40
41};
42
43} // namespace governikus
Definition AbstractState.h:36
void onEntry(QEvent *pEvent) override
Definition AbstractState.cpp:79
Definition FinalState.h:20
FinalState(const QSharedPointer< WorkflowContext > &pContext)
Definition FinalState.h:34
void onEntry(QEvent *pEvent) override
Definition FinalState.h:27
Definition GenericContextContainer.h:22
QSharedPointer< WorkflowContext > getContext() const
Definition GenericContextContainer.h:34
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:17
QSharedPointer< T > decodeObject(const QByteArray &pData, bool pLogging=true)
Template function for decoding an OpenSSL type from DER encoded QByteArray.
Definition ASN1TemplateUtil.h:114