@@ -0,0 +1,21 | |||
|
1 | #ifndef SCIQLOP_ISQPSETTINGSBINDABLE_H | |
|
2 | #define SCIQLOP_ISQPSETTINGSBINDABLE_H | |
|
3 | ||
|
4 | #include <QSettings> | |
|
5 | ||
|
6 | /** | |
|
7 | * @brief The ISqpSettingsBindable interface represents an object that can bind a variable | |
|
8 | */ | |
|
9 | class ISqpSettingsBindable { | |
|
10 | ||
|
11 | public: | |
|
12 | virtual ~ISqpSettingsBindable() = default; | |
|
13 | ||
|
14 | /// Loads settings into the object | |
|
15 | virtual void loadSettings() = 0; | |
|
16 | ||
|
17 | /// Saves settings from the object | |
|
18 | virtual void saveSettings() const = 0; | |
|
19 | }; | |
|
20 | ||
|
21 | #endif // SCIQLOP_ISQPSETTINGSBINDABLE_H |
General Comments 0
You need to be logged in to leave comments.
Login now