##// END OF EJS Templates
Disables fuzzing tests by default
Disables fuzzing tests by default

File last commit:

r949:2da9b0f28a10
r1220:22f7f41559a6
Show More
AmdaResultParser.h
21 lines | 521 B | text/x-c | CLexer
Alexandre Leroux
Amda provider (3)...
r380 #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
Spectrograms implementation (1)...
r949 enum class ValueType { SCALAR, SPECTROGRAM, VECTOR, UNKNOWN };
Alexandre Leroux
Amda provider (3)...
r380
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,
ValueType valueType) noexcept;
Alexandre Leroux
Amda provider (3)...
r380 };
#endif // SCIQLOP_AMDARESULTPARSER_H