AusweisApp2
IfdGetStatus.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
7 #include "RemoteMessage.h"
8 
9 
10 namespace governikus
11 {
13  : public RemoteMessage
14 {
15  private:
16  QString mSlotName;
17 
18  public:
19  explicit IfdGetStatus(const QString& pSlotName = QString());
20  explicit IfdGetStatus(const QJsonObject& pMessageObject);
21  ~IfdGetStatus() override = default;
22 
23  [[nodiscard]] const QString& getSlotName() const;
24  [[nodiscard]] QByteArray toByteArray(const IfdVersion& pIfdVersion, const QString& pContextHandle) const override;
25 };
26 
27 
28 } // namespace governikus
IfdGetStatus.h
governikus::IfdGetStatus::IfdGetStatus
IfdGetStatus(const QString &pSlotName=QString())
Definition: IfdGetStatus.cpp:24
governikus::IfdGetStatus
Definition: IfdGetStatus.h:14
governikus
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:15
RemoteMessage.h
governikus::IfdVersion
Definition: IfdVersion.h:14
governikus::IfdGetStatus::~IfdGetStatus
~IfdGetStatus() override=default
governikus::IfdGetStatus::toByteArray
QByteArray toByteArray(const IfdVersion &pIfdVersion, const QString &pContextHandle) const override
Definition: IfdGetStatus.cpp:50
VALUE_NAME
#define VALUE_NAME(_name, _key)
Definition: RemoteMessage.h:15
governikus::getType
QByteArray getType() const
governikus::IfdGetStatus::getSlotName
const QString & getSlotName() const
Definition: IfdGetStatus.cpp:44