##// END OF EJS Templates
Updates AMDA result parser to accept NaN values...
Updates AMDA result parser to accept NaN values If a value is invalid (for instance not a double), it is converted to NaN. A result line is still invalid if x is invalid (not a date)

File last commit:

r411:1232f5544b57
r496:10850ea661a6
Show More
DataProviderParameters.h
18 lines | 497 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
#ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
#include "SqpDateTime.h"
/**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
/// Times for which retrieve data
QVector<SqpDateTime> m_Times;
/// Extra data that can be used by the provider to retrieve data
QVariantHash m_Data;
};
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H