##// END OF EJS Templates
Many fixes plus implemented var synchronization...
Many fixes plus implemented var synchronization - Improved error handling - Added Range difference to get missing data ranges - Implemented variable synchronization for simple serial scenario Next step is to introduce cache handling in VC2 Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r9:b3317a5111ec
Show More
SqpSettingsDefs.h
22 lines | 661 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPSETTINGSDEFS_H
#define SCIQLOP_SQPSETTINGSDEFS_H
#include "CoreGlobal.h"
#include <QString>
// //////////////// //
// General settings //
// //////////////// //
struct SCIQLOP_CORE_EXPORT SqpSettings {
static double toleranceValue(const QString &key, double defaultValue) noexcept;
};
extern SCIQLOP_CORE_EXPORT const QString GENERAL_TOLERANCE_AT_INIT_KEY;
extern SCIQLOP_CORE_EXPORT const double GENERAL_TOLERANCE_AT_INIT_DEFAULT_VALUE;
extern SCIQLOP_CORE_EXPORT const QString GENERAL_TOLERANCE_AT_UPDATE_KEY;
extern SCIQLOP_CORE_EXPORT const double GENERAL_TOLERANCE_AT_UPDATE_DEFAULT_VALUE;
#endif // SCIQLOP_SQPSETTINGSDEFS_H