AusweisApp2
Lade ...
Suche ...
Keine Treffer
Msg.h
gehe zur Dokumentation dieser Datei
1
9#pragma once
10
11#include "MsgTypes.h"
12
13namespace governikus
14{
15class MsgHandler;
16
17class Msg final
18{
19 friend class MsgHandler;
20
21 private:
22 MsgType mType;
23 QByteArray mData;
24
25 Msg(const MsgType& pType, const QByteArray& pData);
26
27 public:
28 Msg();
29 operator QByteArray() const;
30 operator MsgType() const;
31 explicit operator bool() const;
32};
33
34char* toString(const Msg& pMsg);
35
36} // namespace governikus
Definition MsgHandler.h:20
Definition Msg.h:18
Msg()
Definition Msg.cpp:16
struct Data mData
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:16
char * toString(const CommandApdu &pCommandApdu)