AmdaResultParser.h
21 lines
| 508 B
| text/x-c
|
CLexer
Alexandre Leroux
|
r351 | #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 { | ||||
Alexandre Leroux
|
r530 | enum class ValueType { SCALAR, VECTOR, UNKNOWN }; | ||
Alexandre Leroux
|
r351 | |||
Alexandre Leroux
|
r530 | static std::shared_ptr<IDataSeries> readTxt(const QString &filePath, | ||
ValueType valueType) noexcept; | ||||
Alexandre Leroux
|
r351 | }; | ||
#endif // SCIQLOP_AMDARESULTPARSER_H | ||||