This commit is contained in:
Jacob Støren 2017-03-27 18:12:41 +02:00
parent c0ff734cc7
commit 0c834cdc0f
3 changed files with 8 additions and 8 deletions

View File

@ -40,8 +40,14 @@ public:
explicit RiuResultQwtPlot(QWidget* parent = NULL);
virtual ~RiuResultQwtPlot();
void addCurve(const QString& curveName, const cvf::Color3f& curveColor, const std::vector<QDateTime>& dateTimes, const std::vector<double>& timeHistoryValues);
void addCurve(const QString& curveName, const cvf::Color3f& curveColor, const std::vector<double>& frameTimes, const std::vector<double>& timeHistoryValues);
void addCurve(const QString& curveName,
const cvf::Color3f& curveColor,
const std::vector<QDateTime>& dateTimes,
const std::vector<double>& timeHistoryValues);
void addCurve(const QString& curveName,
const cvf::Color3f& curveColor,
const std::vector<double>& frameTimes,
const std::vector<double>& timeHistoryValues);
void deleteAllCurves();

View File

@ -30,7 +30,6 @@ class QwtInterval;
class QwtPicker;
class QwtPlotMarker;
class RiuQwtCurvePointTracker;
class RimSummaryPlot;
//==================================================================================================
@ -78,8 +77,6 @@ private slots:
void onAxisClicked(int axis, double value);
private:
RiuQwtCurvePointTracker* m_curvePointTracker;
caf::PdmPointer<RimSummaryPlot> m_plotDefinition;
QPointer<QwtPlotZoomer> m_zoomerLeft;

View File

@ -25,8 +25,6 @@
class RimWellLogTrack;
class RiuQwtCurvePointTracker;
class QwtLegend;
class QwtPicker;
class QwtPlotGrid;
@ -67,6 +65,5 @@ private:
private:
caf::PdmPointer<RimWellLogTrack> m_plotTrackDefinition;
RiuQwtCurvePointTracker* m_curvePointTracker;
};