##// 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.cpp
13 lines | 502 B | text/x-c | CppLexer
/ gui / src / Visualization / VisualizationGraphRenderingDelegate.cpp
#include "Visualization/VisualizationGraphRenderingDelegate.h"
#include "Visualization/qcustomplot.h"
struct VisualizationGraphRenderingDelegate::VisualizationGraphRenderingDelegatePrivate {
explicit VisualizationGraphRenderingDelegatePrivate(QCustomPlot &plot) : m_Plot{plot} {}
QCustomPlot &m_Plot;
};
VisualizationGraphRenderingDelegate::VisualizationGraphRenderingDelegate(QCustomPlot &plot)
: impl{spimpl::make_unique_impl<VisualizationGraphRenderingDelegatePrivate>(plot)}
{
}