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
AuthContext.h
governikus::AuthContext
Definition: AuthContext.h:48
governikus::SelfAuthContext::getSelfAuthenticationData
const SelfAuthenticationData & getSelfAuthenticationData() const
Definition: SelfAuthContext.h:30
governikus::SelfAuthContext::setSelfAuthenticationData
void setSelfAuthenticationData(const SelfAuthenticationData &pSelfAuthenticationData)
Definition: SelfAuthContext.h:36
governikus::SelfAuthContext::fireSelfAuthenticationDataChanged
void fireSelfAuthenticationDataChanged()
Definition: moc_SelfAuthContext.cpp:130
governikus::SelfAuthContext::SelfAuthContext
SelfAuthContext()
Definition: SelfAuthContext.cpp:9
governikus
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:15
governikus::SelfAuthContext
Definition: SelfAuthContext.h:18
SelfAuthContext.h
governikus::SelfAuthenticationData
Definition: SelfAuthenticationData.h:59
governikus::ActivationContext
Definition: ActivationContext.h:19
SelfAuthenticationData.h