AusweisApp
 
Lade ...
Suche ...
Keine Treffer
IfdDestroyPaceChannelResponse.h
gehe zur Dokumentation dieser Datei
1
4
5#pragma once
6
8
9
10namespace governikus
11{
13 : public IfdMessageResponse
14{
15 private:
16 QString mSlotHandle;
17
18 public:
19 explicit IfdDestroyPaceChannelResponse(const QString& pSlotHandle, ECardApiResult::Minor pResultMinor = ECardApiResult::Minor::null);
20 explicit IfdDestroyPaceChannelResponse(const QJsonObject& pMessageObject);
21 ~IfdDestroyPaceChannelResponse() 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
@ null
Definition ECardApiResult.h:51
QByteArray toByteArray(IfdVersion::Version pIfdVersion, const QString &pContextHandle) const override
Definition IfdDestroyPaceChannelResponse.cpp:47
IfdDestroyPaceChannelResponse(const QString &pSlotHandle, ECardApiResult::Minor pResultMinor=ECardApiResult::Minor::null)
Definition IfdDestroyPaceChannelResponse.cpp:24
~IfdDestroyPaceChannelResponse() override=default
const QString & getSlotHandle() const
Definition IfdDestroyPaceChannelResponse.cpp:41
IfdMessageResponse(IfdMessageType pType, ECardApiResult::Minor pResultMinor)
Definition IfdMessageResponse.cpp:34
Version
Definition IfdVersion.h:17
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:17