(#396) Removed unused methods

This commit is contained in:
Pål Hagen 2015-08-31 10:52:11 +02:00
parent c2b7305f8e
commit ed432290af
2 changed files with 2 additions and 30 deletions

View File

@ -95,30 +95,6 @@ void RimWellLogPlotCurve::plot(const std::vector<double>& depthValues, const std
m_plot->replot();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
size_t RimWellLogPlotCurve::pointCount() const
{
return m_depthValues.size();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const double* RimWellLogPlotCurve::depthValues() const
{
return m_depthValues.data();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const double* RimWellLogPlotCurve::values() const
{
return m_values.data();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -40,12 +40,8 @@ public:
RimWellLogPlotCurve();
virtual ~RimWellLogPlotCurve();
void setPlot(RiuWellLogTracePlot* plot);
void plot(const std::vector<double>& m_depthValues, const std::vector<double>& m_values);
size_t pointCount() const;
const double* depthValues() const;
const double* values() const;
void setPlot(RiuWellLogTracePlot* plot);
void plot(const std::vector<double>& m_depthValues, const std::vector<double>& m_values);
protected: