AusweisApp2
 Alle Klassen Namensbereiche Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Propertys Freundbeziehungen Makrodefinitionen
IfdEstablishContextResponse.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
8 
9 #include <QJsonObject>
10 #include <QString>
11 
12 
13 namespace governikus
14 {
16  : public RemoteMessageResponse
17 {
18  private:
19  QString mIfdName;
20 
21  public:
22  IfdEstablishContextResponse(const QString& pIfdName, const QString& pResultMinor = QString());
23  IfdEstablishContextResponse(const QJsonObject& pMessageObject);
24  virtual ~IfdEstablishContextResponse() override = default;
25 
26  const QString& getIfdName() const;
27  virtual QJsonDocument toJson(const QString& pContextHandle) const override;
28 };
29 
30 
31 } /* namespace governikus */
Definition: RemoteMessageResponse.h:14
Definition: IfdEstablishContextResponse.h:15
virtual QJsonDocument toJson(const QString &pContextHandle) const override
Definition: IfdEstablishContextResponse.cpp:37
const QString & getIfdName() const
Definition: IfdEstablishContextResponse.cpp:45
IfdEstablishContextResponse(const QString &pIfdName, const QString &pResultMinor=QString())
Definition: IfdEstablishContextResponse.cpp:22
virtual ~IfdEstablishContextResponse() override=default