QwtPlotTradingCurve base access qualifiers
Just wondering if
Code:
// in <qwt_plot_tradingcurve.h>
class QWT_EXPORT QwtPlotTradingCurve:
public QwtPlotSeriesItem, QwtSeriesStore<QwtOHLCSample>
was intended to be
Code:
// in <qwt_plot_tradingcurve.h>
class QWT_EXPORT QwtPlotTradingCurve:
public QwtPlotSeriesItem, public QwtSeriesStore<QwtOHLCSample>
I'm implementing QwtPlotTradingCurve::closestPoint() (in a derived class), but QwtSeriesStore functions are inaccessible.
Re: QwtPlotTradingCurve base access qualifiers
Yes of course - fixed in SVN,
Uwe