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