##// END OF EJS Templates
Many synchronization fixes, most operations works, only product drag from tree is broken...
Many synchronization fixes, most operations works, only product drag from tree is broken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1351:d755f1f0a484
r1377:0f6ffbe66d5f
Show More
AmdaResultParser.h
23 lines | 622 B | text/x-c | CLexer
#ifndef SCIQLOP_AMDARESULTPARSER_H
#define SCIQLOP_AMDARESULTPARSER_H
#include "AmdaGlobal.h"
#include <Data/DataSeriesType.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,
DataSeriesType valueType) noexcept;
static IDataSeries* readTxt(QTextStream stream,
DataSeriesType type)noexcept;
};
#endif // SCIQLOP_AMDARESULTPARSER_H