#ifndef PYTHON_MATPLOTLIB_PLOT_VIEW_H #define PYTHON_MATPLOTLIB_PLOT_VIEW_H #include #include "plot_store.h" namespace Matplotlib { class PlotView : public Shared::LabeledCurveView { public: PlotView(PlotStore * s) : Shared::LabeledCurveView(s), m_store(s) {} void drawRect(KDContext * ctx, KDRect rect) const override; private: PlotStore * m_store; }; } #endif