AusweisApp2
IfdDisconnect.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
7 #include "IfdMessage.h"
8 
9 
10 namespace governikus
11 {
13  : public IfdMessage
14 {
15  private:
16  QString mSlotHandle;
17 
18  public:
19  explicit IfdDisconnect(const QString& pReaderName);
20  explicit IfdDisconnect(const QJsonObject& pMessageObject);
21  ~IfdDisconnect() 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
Definition: IfdDisconnect.h:14
QByteArray toByteArray(IfdVersion::Version pIfdVersion, const QString &pContextHandle) const override
Definition: IfdDisconnect.cpp:50
IfdDisconnect(const QString &pReaderName)
Definition: IfdDisconnect.cpp:24
const QString & getSlotHandle() const
Definition: IfdDisconnect.cpp:44
~IfdDisconnect() override=default
Version
Definition: IfdVersion.h:17
A simple template renderer.
Definition: ActivationContext.h:15