##// 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:

r380:7ff7615687bf
r496:10850ea661a6
Show More
AmdaResultParser.h
19 lines | 385 B | text/x-c | CLexer
Alexandre Leroux
Amda provider (3)...
r380 #ifndef SCIQLOP_AMDARESULTPARSER_H
#define SCIQLOP_AMDARESULTPARSER_H
#include "AmdaGlobal.h"
#include <QLoggingCategory>
#include <memory>
class IDataSeries;
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaResultParser)
struct SCIQLOP_AMDA_EXPORT AmdaResultParser {
static std::shared_ptr<IDataSeries> readTxt(const QString &filePath) noexcept;
};
#endif // SCIQLOP_AMDARESULTPARSER_H