##// END OF EJS Templates
Creates a delegate offering methods for rendering a graph
Creates a delegate offering methods for rendering a graph

File last commit:

r442:b604fc4c3d10
r442:b604fc4c3d10
Show More
VisualizationGraphRenderingDelegate.h
18 lines | 499 B | text/x-c | CLexer
/ gui / include / Visualization / VisualizationGraphRenderingDelegate.h
#ifndef SCIQLOP_VISUALIZATIONGRAPHRENDERINGDELEGATE_H
#define SCIQLOP_VISUALIZATIONGRAPHRENDERINGDELEGATE_H
#include <Common/spimpl.h>
class QCustomPlot;
class QMouseEvent;
class VisualizationGraphRenderingDelegate {
public:
explicit VisualizationGraphRenderingDelegate(QCustomPlot &plot);
private:
class VisualizationGraphRenderingDelegatePrivate;
spimpl::unique_impl_ptr<VisualizationGraphRenderingDelegatePrivate> impl;
};
#endif // SCIQLOP_VISUALIZATIONGRAPHRENDERINGDELEGATE_H