##// END OF EJS Templates
Product field now display products event list instead of only its size
Product field now display products event list instead of only its size

File last commit:

r1278:d3daab81283b
r1310:6ea80a9a6c65
Show More
DataSeriesType.h
26 lines | 686 B | text/x-c | CLexer
Alexandre Leroux
Move the AMDA data type to a type accessible from core
r1278 #ifndef SCIQLOP_DATASERIESTYPE_H
#define SCIQLOP_DATASERIESTYPE_H
#include <QString>
enum class DataSeriesType { SCALAR, SPECTROGRAM, VECTOR, UNKNOWN };
struct DataSeriesTypeUtils {
static DataSeriesType fromString(const QString &type)
{
if (type == QStringLiteral("scalar")) {
return DataSeriesType::SCALAR;
}
else if (type == QStringLiteral("spectrogram")) {
return DataSeriesType::SPECTROGRAM;
}
else if (type == QStringLiteral("vector")) {
return DataSeriesType::VECTOR;
}
else {
return DataSeriesType::UNKNOWN;
}
}
};
#endif // SCIQLOP_DATASERIESTYPE_H