#ifndef MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H #define MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H #include #include #include "MeasureAnalysisView.h" class QCustomPlot; class MeasureAnalysisParticleCountPlotView : public MeasureAnalysisView { Q_OBJECT public: MeasureAnalysisParticleCountPlotView(QWidget *parent = nullptr); virtual void SetAnalyzeDataFilename(const QMap& data_files_set); private: void setupCustomPlot(); void loadDataFromFile(const QString &data_name, const QString& filename); private: QCustomPlot* _custom_plot { nullptr }; }; #endif // MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H