##// END OF EJS Templates
Handles rendering of plottables (2)...
Handles rendering of plottables (2) Handles rendering of scalars and vectors: the method that determines colors for each component is moved from VisualizationGraphHelper to the helper created previously

File last commit:

r462:a5a31ade100c
r919:f75604dde9e3
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