From 5066f9908772d1838d73834eb5bcb6f8f7858fe1 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Tue, 15 Aug 2023 20:16:44 -0400 Subject: Create convinence method for reading settings This method avoids having to create a SettingsInterface object that will be only used to read a small number of settings before being destroyed. It creates a static object that persists between invocations. Through the use of QSettings for reading a value, we are assured of always reading the most up to date version of settings as this class guaranties that changes done to one QSettings object will be immediately visible in other QSettings objects. --- src/settings_interface.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/settings_interface.h') diff --git a/src/settings_interface.h b/src/settings_interface.h index e3935d0..fa9386c 100644 --- a/src/settings_interface.h +++ b/src/settings_interface.h @@ -28,6 +28,7 @@ class SettingsInterface { public: ~SettingsInterface(); const QVariant read_setting(const QString &key); + static const QVariant quick_read_setting(const QString &key); void write_setting(const QString &key, const QVariant &value); void clear_setting(const QString &key); void clear_all(); -- cgit v1.2.3-54-g00ecf