AusweisApp
Lade ...
Suche ...
Keine Treffer
Msg.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include "MsgTypes.h"
8
9namespace governikus
10{
11class MsgHandler;
12
13class Msg final
14{
15 friend class MsgHandler;
16
17 private:
18 MsgType mType;
19 QByteArray mData;
20
21 Msg(const MsgType& pType, const QByteArray& pData);
22
23 public:
24 Msg();
25 operator QByteArray() const;
26 operator MsgType() const;
27 explicit operator bool() const;
28};
29
30char* toString(const Msg& pMsg);
31
32} // namespace governikus
Definition MsgHandler.h:16
Definition Msg.h:14
Msg()
Definition Msg.cpp:16
struct Data mData
Defines the AccessRight and AccessRole enum.
Definition CommandApdu.h:17
char * toString(const CommandApdu &pCommandApdu)