##// END OF EJS Templates
Add impletation for displaying data that are already in cache when...
Add impletation for displaying data that are already in cache when acquisition is requested

File last commit:

r530:a08e6992e146
r539:575eda7156d0
Show More
AmdaResultParser.h
21 lines | 508 B | text/x-c | CLexer
Alexandre Leroux
Amda provider (3)...
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
Creates enum that represents the value types that can be read in AMDA...
r530 enum class ValueType { SCALAR, VECTOR, UNKNOWN };
Alexandre Leroux
Amda provider (3)...
r351
Alexandre Leroux
Creates enum that represents the value types that can be read in AMDA...
r530 static std::shared_ptr<IDataSeries> readTxt(const QString &filePath,
ValueType valueType) noexcept;
Alexandre Leroux
Amda provider (3)...
r351 };
#endif // SCIQLOP_AMDARESULTPARSER_H