AusweisApp2
 Alle Klassen Namensbereiche Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Propertys Freundbeziehungen Makrodefinitionen
DidList.h
gehe zur Dokumentation dieser Datei
1 
7 #pragma once
8 
10 #include "paos/ElementDetector.h"
11 #include "paos/PaosMessage.h"
12 
13 namespace governikus
14 {
15 
16 class DIDList
17  : public PaosMessage
18  , private ElementDetector
19 {
20  private:
21  ConnectionHandle mConnectionHandle;
22 
23  void parse();
24  bool handleFoundElement(const QString& pElementName, const QString& pValue, const QXmlStreamAttributes& pAttributes) override;
25  bool handleFoundElementConnectionHandle(const QString& pElementName, const QString& pValue);
26 
27  public:
28  DIDList(const QByteArray& pXmlData);
30 };
31 
32 } /* namespace governikus */
Definition: PaosMessage.h:18
const ConnectionHandle & getConnectionHandle() const
Definition: DidList.cpp:89
DIDList(const QByteArray &pXmlData)
Definition: DidList.cpp:14
Definition: DidList.h:16
Definition: ConnectionHandle.h:14
Definition: ElementDetector.h:16