2015-09-14 16:33:28 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2015- Statoil ASA
|
|
|
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
2015-09-14 16:33:28 +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 10:40:57 +02:00
|
|
|
//
|
2015-09-14 16:33:28 +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 10:40:57 +02:00
|
|
|
//
|
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2015-09-14 16:33:28 +02:00
|
|
|
// for more details.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2024-05-27 12:09:47 +02:00
|
|
|
#include "RimWellLogChannel.h"
|
2015-09-14 16:33:28 +02:00
|
|
|
|
2018-11-05 14:28:07 +01:00
|
|
|
#include "RiaFieldHandleTools.h"
|
|
|
|
|
|
2024-06-17 14:37:57 +02:00
|
|
|
CAF_PDM_SOURCE_INIT( RimWellLogChannel, "WellLogChannel", "WellLogFileChannel" );
|
2015-09-14 16:33:28 +02:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 10:40:57 +02:00
|
|
|
///
|
2015-09-14 16:33:28 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2024-05-27 12:09:47 +02:00
|
|
|
RimWellLogChannel::RimWellLogChannel()
|
2015-09-14 16:33:28 +02:00
|
|
|
{
|
2024-06-17 14:37:57 +02:00
|
|
|
CAF_PDM_InitObject( "Well Log Channel" );
|
2015-09-14 16:33:28 +02:00
|
|
|
|
2024-05-27 13:32:40 +02:00
|
|
|
RiaFieldHandleTools::disableWriteAndSetFieldHidden( nameField() );
|
2021-11-14 14:15:12 +01:00
|
|
|
}
|