##// END OF EJS Templates
Remove unused pending request of worker since it's already in the VC....
Remove unused pending request of worker since it's already in the VC. Fix bug with progress asynchrone computation

File last commit:

r1332:d3daab81283b
r1387:3f0567bfecb5 HEAD
Show More
AmdaResultParser.h
21 lines | 492 B | text/x-c | CLexer
Alexandre Leroux
Amda provider (3)...
r380 #ifndef SCIQLOP_AMDARESULTPARSER_H
#define SCIQLOP_AMDARESULTPARSER_H
#include "AmdaGlobal.h"
Alexandre Leroux
Move the AMDA data type to a type accessible from core
r1332 #include <Data/DataSeriesType.h>
Alexandre Leroux
Amda provider (3)...
r380 #include <QLoggingCategory>
#include <memory>
class IDataSeries;
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaResultParser)
struct SCIQLOP_AMDA_EXPORT AmdaResultParser {
Alexandre Leroux
Creates enum that represents the value types that can be read in AMDA...
r563 static std::shared_ptr<IDataSeries> readTxt(const QString &filePath,
Alexandre Leroux
Move the AMDA data type to a type accessible from core
r1332 DataSeriesType valueType) noexcept;
Alexandre Leroux
Amda provider (3)...
r380 };
#endif // SCIQLOP_AMDARESULTPARSER_H