AusweisApp2
SelfAuthContext.h
gehe zur Dokumentation dieser Datei
1 
7 #pragma once
8 
9 #include "AuthContext.h"
10 
11 #include "SelfAuthenticationData.h"
12 
13 namespace governikus
14 {
15 
17  : public AuthContext
18 {
19  Q_OBJECT
20 
21  private:
22  SelfAuthenticationData mSelfAuthenticationData;
23 
24  Q_SIGNALS:
26 
27  public:
29 
31  {
32  return mSelfAuthenticationData;
33  }
34 
35 
36  void setSelfAuthenticationData(const SelfAuthenticationData& pSelfAuthenticationData)
37  {
38  mSelfAuthenticationData = pSelfAuthenticationData;
40  }
41 
42 
43 };
44 
45 } // namespace governikus
Definition: AuthContext.h:47
void setSelfAuthenticationData(const SelfAuthenticationData &pSelfAuthenticationData)
Definition: SelfAuthContext.h:36
const SelfAuthenticationData & getSelfAuthenticationData() const
Definition: SelfAuthContext.h:30
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:14
SelfAuthContext()
Definition: SelfAuthContext.cpp:9
Definition: SelfAuthContext.h:16
Definition: SelfAuthenticationData.h:58