##// END OF EJS Templates
Improves AMDA result parsing...
Improves AMDA result parsing Finds the unit among all the commented lines, in order to handle the case where the number of commented lines differs from one file to another

File last commit:

r380:7ff7615687bf
r492:41e897ecff03
Show More
AmdaResultParser.h
19 lines | 385 B | text/x-c | CLexer
#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