#ifndef _FITK_XYPLOT_WINDOW_H___ #define _FITK_XYPLOT_WINDOW_H___ #include "FITKPlotWindowAPI.h" #include "FITK_Kernel/FITKCore/FITKAbstractGraphWidget.h" class QwtPlot; namespace Ui { class FITKXYPlotWindow; } namespace Plot { class FITKPlotWindowAPI FITKXYPlotWindow : public Core::FITKAbstractGraph2DWidget { public: explicit FITKXYPlotWindow(QWidget* parent = nullptr); virtual ~FITKXYPlotWindow(); QwtPlot* getPlotWidget(); protected: Ui::FITKXYPlotWindow* _ui{}; QwtPlot* _plotWidget{}; }; } #endif