2015-08-26 05:27:29 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2015- Statoil ASA
|
|
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
2019-09-06 06:17:36 -05:00
|
|
|
//
|
2015-08-26 05:27:29 -05:00
|
|
|
// 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.
|
2019-09-06 06:17:36 -05:00
|
|
|
//
|
2015-08-26 05:27:29 -05:00
|
|
|
// 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.
|
2019-09-06 06:17:36 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2015-08-26 05:27:29 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-10 05:44:58 -05:00
|
|
|
#include "cafPdmObject.h"
|
2015-08-27 09:13:49 -05:00
|
|
|
|
2020-03-18 03:35:58 -05:00
|
|
|
#include "RimDepthTrackPlot.h"
|
2015-08-26 05:27:29 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
2019-09-06 06:17:36 -05:00
|
|
|
///
|
|
|
|
///
|
2015-08-26 05:27:29 -05:00
|
|
|
//==================================================================================================
|
2020-03-18 03:35:58 -05:00
|
|
|
class RimWellLogPlot : public RimDepthTrackPlot
|
2015-08-26 05:27:29 -05:00
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
2015-09-10 08:29:50 -05:00
|
|
|
|
2015-08-26 05:27:29 -05:00
|
|
|
public:
|
2015-08-27 09:13:49 -05:00
|
|
|
RimWellLogPlot();
|
2018-10-18 12:45:57 -05:00
|
|
|
~RimWellLogPlot() override;
|
2015-08-27 09:13:49 -05:00
|
|
|
|
2020-01-16 05:32:40 -06:00
|
|
|
RimWellLogPlot& operator=( RimWellLogPlot&& rhs );
|
2015-08-26 05:27:29 -05:00
|
|
|
};
|