AusweisApp2
Lade ...
Suche ...
Keine Treffer
StateWriteHistory.h
gehe zur Dokumentation dieser Datei
1
5/*
6 *
7 * \brief Writes the history entry .
8 */
9
10#pragma once
11
12#include "AbstractState.h"
14#include "context/AuthContext.h"
15
16
17class test_StateWriteHistory;
18
19
20namespace governikus
21{
22
24 : public AbstractState
25 , public GenericContextContainer<AuthContext>
26{
27 Q_OBJECT
28 friend class StateBuilder;
29 friend class ::test_StateWriteHistory;
30
31 private:
32 explicit StateWriteHistory(const QSharedPointer<WorkflowContext>& pContext);
33 void run() override;
34
35 public:
36 void onEntry(QEvent* pEvent) override;
37};
38
39} // namespace governikus
Definition: AbstractState.h:23
Definition: GenericContextContainer.h:22
Definition: StateBuilder.h:20
Definition: StateWriteHistory.h:26
void onEntry(QEvent *pEvent) override
Definition: StateWriteHistory.cpp:89
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16