#3128 Completion Export : Expose data to be used in text reports

This commit is contained in:
Magne Sjaastad
2018-06-29 10:57:26 +02:00
parent b5203ec678
commit ede6ebef90
10 changed files with 95 additions and 8 deletions

View File

@@ -122,6 +122,14 @@ void RimFractureContainment::setTopKLayer(int topKLayer)
m_topKLayer = topKLayer;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
int RimFractureContainment::topKLayer() const
{
return m_topKLayer;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
@@ -130,6 +138,14 @@ void RimFractureContainment::setBaseKLayer(int baseKLayer)
m_baseKLayer = baseKLayer;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
int RimFractureContainment::baseKLayer() const
{
return m_baseKLayer;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------