AusweisApp2
IfdError.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
7 #include "IfdMessageResponse.h"
8 
9 
10 namespace governikus
11 {
12 class IfdError
13  : public IfdMessageResponse
14 {
15  private:
16  QString mSlotHandle;
17 
18  public:
19  IfdError(const QString& pSlotHandle, ECardApiResult::Minor pResultMinor = ECardApiResult::Minor::null);
20  explicit IfdError(const QJsonObject& pMessageObject);
21  ~IfdError() override = default;
22 
23  [[nodiscard]] const QString& getSlotHandle() const;
24  [[nodiscard]] QByteArray toByteArray(IfdVersion::Version pIfdVersion, const QString& pContextHandle) const override;
25 };
26 
27 
28 } // namespace governikus
Minor
Definition: ECardApiResult.h:44
Definition: IfdError.h:14
const QString & getSlotHandle() const
Definition: IfdError.cpp:44
~IfdError() override=default
QByteArray toByteArray(IfdVersion::Version pIfdVersion, const QString &pContextHandle) const override
Definition: IfdError.cpp:50
IfdError(const QString &pSlotHandle, ECardApiResult::Minor pResultMinor=ECardApiResult::Minor::null)
Definition: IfdError.cpp:24
Definition: IfdMessageResponse.h:15
Version
Definition: IfdVersion.h:17
A simple template renderer.
Definition: ActivationContext.h:15