GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
SettingsObject.h
1 
29 #pragma once
30 
31 #include "core/GpgFrontendCoreExport.h"
32 
33 namespace GpgFrontend {
34 
40 class GPGFRONTEND_CORE_EXPORT SettingsObject : public QJsonObject {
41  public:
47  explicit SettingsObject(QString settings_name);
48 
54  explicit SettingsObject(QJsonObject sub_json);
55 
60  ~SettingsObject();
61 
66  void Store(const QJsonObject&);
67 
68  private:
69  QString settings_name_;
70 };
71 } // namespace GpgFrontend
The SettingsObject class This class is used to store data for the application securely.
Definition: SettingsObject.h:40
Definition: app.cpp:39