2015-09-15 08:58:22 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2015- Statoil ASA
|
|
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
|
|
|
//
|
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cafPdmFieldCvfColor.h"
|
|
|
|
|
2016-12-17 09:29:36 -06:00
|
|
|
class RimWellLogCurve;
|
2017-02-07 02:34:11 -06:00
|
|
|
class RimWellAllocationPlot;
|
2016-12-17 09:29:36 -06:00
|
|
|
|
2015-09-15 08:58:22 -05:00
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RicWellLogPlotCurveFeatureImpl
|
|
|
|
{
|
2015-09-15 11:21:38 -05:00
|
|
|
public:
|
2017-02-10 01:39:25 -06:00
|
|
|
static cvf::Color3f curveColorFromTable(size_t index);
|
2016-12-17 09:29:36 -06:00
|
|
|
static std::vector<RimWellLogCurve*> selectedWellLogCurves();
|
2017-02-07 02:34:11 -06:00
|
|
|
static RimWellAllocationPlot* parentWellAllocationPlot();
|
2015-09-15 08:58:22 -05:00
|
|
|
};
|