mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Add explicit constructor calls to parent class in RigWellPath
This commit is contained in:
parent
f30ad36c82
commit
1482fdebf9
@ -28,7 +28,8 @@
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigWellPath::RigWellPath()
|
||||
: m_hasDatumElevation( false )
|
||||
: cvf::Object()
|
||||
, m_hasDatumElevation( false )
|
||||
, m_datumElevation( 0.0 )
|
||||
, m_startIndex( 0u )
|
||||
, objectBeingDeleted( this )
|
||||
@ -39,7 +40,8 @@ RigWellPath::RigWellPath()
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigWellPath::RigWellPath( const RigWellPath& rhs )
|
||||
: m_wellPathPoints( rhs.m_wellPathPoints )
|
||||
: cvf::Object()
|
||||
, m_wellPathPoints( rhs.m_wellPathPoints )
|
||||
, m_measuredDepths( rhs.m_measuredDepths )
|
||||
, m_hasDatumElevation( rhs.m_hasDatumElevation )
|
||||
, m_datumElevation( rhs.m_datumElevation )
|
||||
@ -52,7 +54,8 @@ RigWellPath::RigWellPath( const RigWellPath& rhs )
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigWellPath::RigWellPath( const std::vector<cvf::Vec3d>& wellPathPoints, const std::vector<double>& measuredDepths )
|
||||
: m_wellPathPoints( wellPathPoints )
|
||||
: cvf::Object()
|
||||
, m_wellPathPoints( wellPathPoints )
|
||||
, m_measuredDepths( measuredDepths )
|
||||
, m_startIndex( 0u )
|
||||
, objectBeingDeleted( this )
|
||||
|
Loading…
Reference in New Issue
Block a user