AusweisApp2
Lade ...
Suche ...
Keine Treffer
SelfAuthContext.h
gehe zur Dokumentation dieser Datei
1
9#pragma once
10
11#include "context/AuthContext.h"
12
14
15namespace governikus
16{
17
19 : public AuthContext
20{
21 Q_OBJECT
22
23 private:
24 SelfAuthenticationData mSelfAuthenticationData;
25
26 Q_SIGNALS:
28
29 public:
31
33 {
34 return mSelfAuthenticationData;
35 }
36
37
38 void setSelfAuthenticationData(const SelfAuthenticationData& pSelfAuthenticationData)
39 {
40 mSelfAuthenticationData = pSelfAuthenticationData;
42 }
43
44
45};
46
47} // namespace governikus
Definition: AuthContext.h:47
Definition: SelfAuthContext.h:20
const SelfAuthenticationData & getSelfAuthenticationData() const
Definition: SelfAuthContext.h:32
SelfAuthContext()
Definition: SelfAuthContext.cpp:9
void setSelfAuthenticationData(const SelfAuthenticationData &pSelfAuthenticationData)
Definition: SelfAuthContext.h:38
Definition: SelfAuthenticationData.h:61
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16