##// END OF EJS Templates
Updated to fixed TS lib, added spectrogram min/max sampling hints when available...
Updated to fixed TS lib, added spectrogram min/max sampling hints when available Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r85:1e3f92d40b0e
Show More
ISqpSettingsBindable.h
21 lines | 490 B | text/x-c | CLexer
#ifndef SCIQLOP_ISQPSETTINGSBINDABLE_H
#define SCIQLOP_ISQPSETTINGSBINDABLE_H
#include <QSettings>
/**
* @brief The ISqpSettingsBindable interface represents an object that can bind a variable
*/
class ISqpSettingsBindable {
public:
virtual ~ISqpSettingsBindable() = default;
/// Loads settings into the object
virtual void loadSettings() = 0;
/// Saves settings from the object
virtual void saveSettings() const = 0;
};
#endif // SCIQLOP_ISQPSETTINGSBINDABLE_H