AusweisApp2
StateWriteHistory.h
gehe zur Dokumentation dieser Datei
1 /*
2  *
3  * \brief Writes the history entry .
4  *
5  * \copyright Copyright (c) 2014-2022 Governikus GmbH & Co. KG, Germany
6  */
7 
8 #pragma once
9 
10 #include "AbstractState.h"
12 #include "context/AuthContext.h"
13 
14 
15 class test_StateWriteHistory;
16 
17 
18 namespace governikus
19 {
20 
22  : public AbstractState
23  , public GenericContextContainer<AuthContext>
24 {
25  Q_OBJECT
26  friend class StateBuilder;
27  friend class ::test_StateWriteHistory;
28 
29  private:
30  explicit StateWriteHistory(const QSharedPointer<WorkflowContext>& pContext);
31  void run() override;
32 
33  public:
34  void onEntry(QEvent* pEvent) override;
35 };
36 
37 } // namespace governikus
Definition: AbstractState.h:20
Definition: GenericContextContainer.h:20
Definition: StateBuilder.h:18
Definition: StateWriteHistory.h:24
void onEntry(QEvent *pEvent) override
Definition: StateWriteHistory.cpp:82
A simple template renderer.
Definition: ActivationContext.h:15