I always get the following error
1>QCurvePlot.cpp
1>e:\Daten\Dev\SVN\Laserdynamics\QLaserDynamic\inc lude\qwt\qwt_plot_curve.h(214) : error C2248: "QwtPlotItem::QwtPlotItem": Kein Zugriff auf private Member, dessen Deklaration in der QwtPlotItem-Klasse erfolgte.
1> e:\daten\dev\svn\laserdynamics\qlaserdynamic\inclu de\qwt\qwt_plot_item.h(130): Siehe Deklaration von 'QwtPlotItem::QwtPlotItem'
1> e:\daten\dev\svn\laserdynamics\qlaserdynamic\inclu de\qwt\qwt_plot_item.h(31): Siehe Deklaration von 'QwtPlotItem'
1> Diese Diagnose trat in der vom Compiler generierten Funktion "QwtPlotCurve::QwtPlotCurve(const QwtPlotCurve &)" auf.
If I access/create an new curve using:
Qt Code:
  1. public:
  2. vector<QwtPlotCurve> Curve;
  3.  
  4. void QCurvePlot::addCurve()
  5. {
  6. QwtPlotCurve curve;
  7. Curve.push_back(curve);
  8. }
To copy to clipboard, switch view to plain text mode