AusweisApp
Lade ...
Suche ...
Keine Treffer
IfdError.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
8
9
10namespace governikus
11{
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:50
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
Definition IfdMessageResponse.h:15
Version
Definition IfdVersion.h:17
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:16