##// END OF EJS Templates
Updates AMDA provider to handle different server URLs...
Updates AMDA provider to handle different server URLs Retrieves product's attribute (if it exists) that indicates the server to use to get its data, and generates correct URL according to it

File last commit:

r462:a5a31ade100c
r932:c6c3dd525d27
Show More
ISqpSettingsBindable.h
21 lines | 490 B | text/x-c | CLexer
/ core / include / Settings / ISqpSettingsBindable.h
Alexandre Leroux
Creates interface that defines an object that can load/save QSettings values
r462 #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