diff options
Diffstat (limited to 'src/core/function/GlobalSettingStation.h')
-rw-r--r-- | src/core/function/GlobalSettingStation.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/function/GlobalSettingStation.h b/src/core/function/GlobalSettingStation.h index f45c0b49..9ef29792 100644 --- a/src/core/function/GlobalSettingStation.h +++ b/src/core/function/GlobalSettingStation.h @@ -131,8 +131,19 @@ class GPGFRONTEND_CORE_EXPORT GlobalSettingStation */ [[nodiscard]] auto GetIntegratedModulePath() const -> QString; + /** + * @brief + * + * @return true + * @return false + */ + [[nodiscard]] auto IsProtableMode() const -> bool; + private: class Impl; SecureUniquePtr<Impl> p_; }; + +auto GPGFRONTEND_CORE_EXPORT GetSettings() -> QSettings; + } // namespace GpgFrontend |