AusweisApp2
 Alle Klassen Namensbereiche Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Propertys Freundbeziehungen Makrodefinitionen
GuiProfile.h
gehe zur Dokumentation dieser Datei
1 
8 #pragma once
9 
10 namespace governikus
11 {
12 
14 {
15  private:
16  static GuiProfile mProfile;
17  GuiProfile();
18  ~GuiProfile() = default;
19 
20  bool mShowWindow;
21 
22  public:
24  {
25  return mProfile;
26  }
27 
28 
29  void setShowWindow(bool pShow);
30  bool getShowWindow() const;
31 };
32 
33 } /* namespace governikus */
static GuiProfile & getProfile()
Definition: GuiProfile.h:23
void setShowWindow(bool pShow)
Definition: GuiProfile.cpp:24
bool getShowWindow() const
Definition: GuiProfile.cpp:18
Definition: GuiProfile.h:13