##// END OF EJS Templates
Corrected stupid scroll bug, scrolling a graph did also trigger vertical scroll...
Corrected stupid scroll bug, scrolling a graph did also trigger vertical scroll Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1351:d755f1f0a484
r1374:5ef45d7f54ca
Show More
AmdaResultParser.h
23 lines | 622 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
r1278 #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
r1278 DataSeriesType valueType) noexcept;
Removed old IDataProvider IF, some small steps toward new VC integration...
r1351 static IDataSeries* readTxt(QTextStream stream,
DataSeriesType type)noexcept;
Alexandre Leroux
Amda provider (3)...
r380 };
#endif // SCIQLOP_AMDARESULTPARSER_H